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();