commit | 7926943c3d70c0f87beccd3fad95c23364483bc4 | [log] [tgz] |
---|---|---|
author | Rick Ellis <rick.ellis@ellislab.com> | Wed Aug 27 06:25:08 2008 +0000 |
committer | Rick Ellis <rick.ellis@ellislab.com> | Wed Aug 27 06:25:08 2008 +0000 |
tree | 1c5c32b113bc9041e80578451605f021d35303bf | |
parent | c3907c629799c16d62c7fd1a72fb06cedba80d07 [diff] [blame] |
Fixed a variable that was set wrong
diff --git a/system/libraries/Loader.php b/system/libraries/Loader.php index 5502357..e5ae3f3 100644 --- a/system/libraries/Loader.php +++ b/system/libraries/Loader.php
@@ -909,7 +909,7 @@ } // Save the class name and object name - $this->_ci_classes[$class] = $object_name; + $this->_ci_classes[$class] = $classvar; // Instantiate the class $CI =& get_instance();