diff options
Diffstat (limited to 'system/core/Model.php')
-rw-r--r-- | system/core/Model.php | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/system/core/Model.php b/system/core/Model.php index 1eb6f909b..11e60759b 100644 --- a/system/core/Model.php +++ b/system/core/Model.php @@ -59,8 +59,7 @@ class CI_Model { */ public function __get($key) { - $CI =& get_instance(); - return $CI->$key; + return get_instance()->$key; } } |