diff options
author | xue <> | 2008-03-06 15:25:32 +0000 |
---|---|---|
committer | xue <> | 2008-03-06 15:25:32 +0000 |
commit | 926b6fa30ee269962acaf29d40328078a175a390 (patch) | |
tree | f46ed8faa0d1a9b8f804dd69e8116516a4ca5fbc /framework/Data/ActiveRecord | |
parent | a33eb784466c3879e40d7bc35be5a37f62552d11 (diff) |
Fixed #799.
Diffstat (limited to 'framework/Data/ActiveRecord')
-rw-r--r-- | framework/Data/ActiveRecord/TActiveRecord.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/framework/Data/ActiveRecord/TActiveRecord.php b/framework/Data/ActiveRecord/TActiveRecord.php index 2bdba2d1..ba1bcc29 100644 --- a/framework/Data/ActiveRecord/TActiveRecord.php +++ b/framework/Data/ActiveRecord/TActiveRecord.php @@ -187,9 +187,9 @@ abstract class TActiveRecord extends TComponent } /** - * Prevent __call() method creating __wake() when unserializing. + * Prevent __call() method creating __wakeup() when unserializing. */ - public function __wake() + public function __wakeup() { $this->setupColumnMapping(); $this->setupRelations(); |