Yet another modification of CI_Loader::_ci_autoload()
diff --git a/system/core/Loader.php b/system/core/Loader.php
index 087d377..9169a12 100644
--- a/system/core/Loader.php
+++ b/system/core/Loader.php
@@ -1215,10 +1215,9 @@
 		// Load any custom config file
 		if (count($autoload['config']) > 0)
 		{
-			$CFG =& get_instance()->config;
 			foreach ($autoload['config'] as $val)
 			{
-				$CFG->load($val);
+				$this->config($val);
 			}
 		}