diff options
author | katzgrau <devnull@localhost> | 2011-04-22 16:59:25 +0200 |
---|---|---|
committer | katzgrau <devnull@localhost> | 2011-04-22 16:59:25 +0200 |
commit | d127e611c64fd1cf6a750b20c4e35b1158e06e27 (patch) | |
tree | 9e698f9a810c9b7534c260c329a7e7fcb0c00f22 | |
parent | 1d3021a26e3d542137ceddc6c0f4a08a4f80a096 (diff) |
Fixed re-searching for config file even though one had been loaded ($found was set to true, never reset). Also fixes getsparks issue.
-rw-r--r-- | system/core/Config.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/system/core/Config.php b/system/core/Config.php index 4493ff266..1096a9ea6 100644 --- a/system/core/Config.php +++ b/system/core/Config.php @@ -144,6 +144,7 @@ class CI_Config { $loaded = TRUE; log_message('debug', 'Config file loaded: '.$file_path); + break; } if ($loaded === FALSE) @@ -326,4 +327,4 @@ class CI_Config { // END CI_Config class /* End of file Config.php */ -/* Location: ./system/core/Config.php */
\ No newline at end of file +/* Location: ./system/core/Config.php */ |