diff --git a/system/codeigniter/Common.php b/system/codeigniter/Common.php
index 1b190e2..6d76fb0 100644
--- a/system/codeigniter/Common.php
+++ b/system/codeigniter/Common.php
@@ -38,7 +38,7 @@
 */
 function &_load_class($class, $instantiate = TRUE)
 {
-	static $objects;
+	static $objects = array();
 	
 	if ( ! isset($objects[$class]))
 	{
@@ -63,7 +63,7 @@
 		}
 		else
 		{
-			$objects[$class] = FALSE;
+			$objects[$class] = TRUE;
 		}
 	}