diff options
author | admin <devnull@localhost> | 2006-10-27 19:57:30 +0200 |
---|---|---|
committer | admin <devnull@localhost> | 2006-10-27 19:57:30 +0200 |
commit | 0e5ca047896c92c490d038f54e4623cb4db4ad76 (patch) | |
tree | 93797122da95e6e07215c4e382f131554cc8ba11 /system/libraries | |
parent | 259ea846018b3c465d3b9c3283a6142a5c342191 (diff) |
Diffstat (limited to 'system/libraries')
-rw-r--r-- | system/libraries/Model.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/libraries/Model.php b/system/libraries/Model.php index e0335bf45..1c2b7afce 100644 --- a/system/libraries/Model.php +++ b/system/libraries/Model.php @@ -36,7 +36,7 @@ class Model { function Model() { // If the magic __get() or __set() methods are used in a Model references can't be used. - $this->_assign_libraries( (method_exists($this, '__get') OR method_exists('__set')) ? FALSE : TRUE ); + $this->_assign_libraries( (method_exists($this, '__get') OR method_exists($this, '__set')) ? FALSE : TRUE ); // We don't want to assign the model object to itself when using the // assign_libraries function below so we'll grab the name of the model parent |