diff options
author | Tim Almdal <tnalmdal@shaw.ca> | 2010-01-13 11:47:27 -0800 |
---|---|---|
committer | Tim Almdal <tnalmdal@shaw.ca> | 2010-01-13 11:47:27 -0800 |
commit | e41ad23a8ea05d28a99d12c01d8f317455b1d361 (patch) | |
tree | d5de34c082c976ede92d3b7963ebcc2a9f7b1834 | |
parent | daeaca110d16128040c86727c65df225e957f7c6 (diff) |
Did the old commit then save trick
-rw-r--r-- | modules/gallery/libraries/MY_ORM.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/gallery/libraries/MY_ORM.php b/modules/gallery/libraries/MY_ORM.php index 95fa9006..1bf5dd13 100644 --- a/modules/gallery/libraries/MY_ORM.php +++ b/modules/gallery/libraries/MY_ORM.php @@ -47,8 +47,8 @@ class ORM extends ORM_Core { return parent::__unset($column); } - public function reload($original_only=false) { - if (!$original_only) { + public function reload($reload_all=true) { + if ($reload_all) { parent::reload(); } $this->original = clone $this; |