From 4a5190dfd9b73abc25346bb75d4548bad3a2b348 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Fri, 24 Jun 2011 23:42:53 -0500 Subject: [PATCH] changed loader to search in libraries instead of packages. --- system/loader.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/system/loader.php b/system/loader.php index e7c963a8..a9491592 100644 --- a/system/loader.php +++ b/system/loader.php @@ -33,9 +33,9 @@ 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; }