diff options
author | ctrlaltca@gmail.com <> | 2011-06-26 09:56:56 +0000 |
---|---|---|
committer | ctrlaltca@gmail.com <> | 2011-06-26 09:56:56 +0000 |
commit | 8dc9d4f7d49bcbeaf4998baf74a4f4459967c1f0 (patch) | |
tree | f2a1a3ddb20418e78e4f0b445866ac2605bff736 /framework/Data/TDbConnection.php | |
parent | f5a87398433ebecefbc62d4fead8a178e32a1f26 (diff) |
applied serialization optimization patch (337)
Diffstat (limited to 'framework/Data/TDbConnection.php')
-rw-r--r-- | framework/Data/TDbConnection.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/framework/Data/TDbConnection.php b/framework/Data/TDbConnection.php index 01cacce2..69420ea1 100644 --- a/framework/Data/TDbConnection.php +++ b/framework/Data/TDbConnection.php @@ -130,8 +130,8 @@ class TDbConnection extends TComponent */
public function __sleep()
{
- $this->close();
- return array_keys(get_object_vars($this));
+// $this->close(); - DO NOT CLOSE the current connection as serializing doesn't neccessarily mean we don't this connection anymore in the current session
+ return array_diff(parent::__sleep(),array("\0TDbConnection\0_pdo","\0TDbConnection\0_active"));
}
/**
|