Browse Source

changed loader to search in libraries instead of packages.

Taylor Otwell 13 years ago
parent
commit
4a5190dfd9
1 changed files with 2 additions and 2 deletions
  1. 2 2
      system/loader.php

+ 2 - 2
system/loader.php

@@ -33,9 +33,9 @@ return function($class) {
 		require $path;
 	}
 	// ----------------------------------------------------------
-	// Is the class in the application/packages directory?
+	// Is the class in the application/libraries directory?
 	// ----------------------------------------------------------
-	elseif (file_exists($path = APP_PATH.'packages/'.$file.EXT))
+	elseif (file_exists($path = APP_PATH.'libraries/'.$file.EXT))
 	{
 		require $path;
 	}