Fix a CI_Loader::_ci_load_class() bug
diff --git a/system/core/Loader.php b/system/core/Loader.php
index 976a5a5..027ed20 100644
--- a/system/core/Loader.php
+++ b/system/core/Loader.php
@@ -1111,7 +1111,7 @@
 		}
 		else
 		{
-			$CI->$classvar = new $name;
+			$CI->$classvar = new $name();
 		}
 	}