From 15dcf49a0ea6895cbf009dc15277858cfdd422ef Mon Sep 17 00:00:00 2001 From: Derek Allard Date: Mon, 12 May 2008 21:37:04 +0000 Subject: removed an ereg from config added a qualifier to a str_replace for \t in Input changed substr to strncmp in Codeigniter.php and directory_map function added braces in an if statement of unit test Removed "scripts" from the auto-load search path. Scripts were deprecated in Version 1.4.1 (September 21, 2006). If you still need to use them for legacy reasons, they must now be manually loaded in each Controller. --- system/libraries/Loader.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'system/libraries/Loader.php') diff --git a/system/libraries/Loader.php b/system/libraries/Loader.php index 687598096..b5a69bbdd 100644 --- a/system/libraries/Loader.php +++ b/system/libraries/Loader.php @@ -905,8 +905,8 @@ class CI_Loader { } } - // Autoload plugins, helpers, scripts and languages - foreach (array('helper', 'plugin', 'script', 'language') as $type) + // Autoload plugins, helpers and languages + foreach (array('helper', 'plugin', 'language') as $type) { if (isset($autoload[$type]) AND count($autoload[$type]) > 0) { @@ -1027,6 +1027,6 @@ class CI_Loader { } } - -/* End of file Loader.php */ + +/* End of file Loader.php */ /* Location: ./system/libraries/Loader.php */ \ No newline at end of file -- cgit v1.2.3-24-g4f1b