diff options
author | Rick Ellis <rick.ellis@ellislab.com> | 2008-08-27 08:25:08 +0200 |
---|---|---|
committer | Rick Ellis <rick.ellis@ellislab.com> | 2008-08-27 08:25:08 +0200 |
commit | 7926943c3d70c0f87beccd3fad95c23364483bc4 (patch) | |
tree | 1c5c32b113bc9041e80578451605f021d35303bf /system | |
parent | c3907c629799c16d62c7fd1a72fb06cedba80d07 (diff) |
Fixed a variable that was set wrong
Diffstat (limited to 'system')
-rw-r--r-- | system/libraries/Loader.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/libraries/Loader.php b/system/libraries/Loader.php index 550235737..e5ae3f389 100644 --- a/system/libraries/Loader.php +++ b/system/libraries/Loader.php @@ -909,7 +909,7 @@ class CI_Loader { }
// Save the class name and object name
- $this->_ci_classes[$class] = $object_name;
+ $this->_ci_classes[$class] = $classvar;
// Instantiate the class
$CI =& get_instance();
|