diff options
| author | Bharat Mediratta <bharat@menalto.com> | 2010-01-20 22:55:22 -0800 | 
|---|---|---|
| committer | Bharat Mediratta <bharat@menalto.com> | 2010-01-20 22:55:22 -0800 | 
| commit | b0ff4418d2d56be5eb6ac5b26255dc8a40404806 (patch) | |
| tree | cfc33e060d114777b584ce2a123f61a25a16a9e0 /modules/user/models/group.php | |
| parent | f0780486eebba9d1f77241e979cedab4df94135a (diff) | |
Stop using MY_ORM::original()
Diffstat (limited to 'modules/user/models/group.php')
| -rw-r--r-- | modules/user/models/group.php | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/modules/user/models/group.php b/modules/user/models/group.php index c00bf5c9..85114ede 100644 --- a/modules/user/models/group.php +++ b/modules/user/models/group.php @@ -55,7 +55,7 @@ class Group_Model extends ORM implements Group_Definition {        module::event("group_created", $this);      } else {        // Updated group -      $original = clone $this->original(); +      $original = ORM::factory("group")->where("id", "=", $this->id)->find();        parent::save();        module::event("group_updated", $original, $this);      } | 
