diff options
author | vlakoff <vlakoff@gmail.com> | 2013-08-17 07:31:29 +0200 |
---|---|---|
committer | vlakoff <vlakoff@gmail.com> | 2013-08-17 16:39:02 +0200 |
commit | 8d70c0af8f395cfa6354e4e586b156f65954fca3 (patch) | |
tree | 03fcac4d3f2a88b188e08d0378b1ee302e7e88a2 /system/core/CodeIgniter.php | |
parent | e19b5557e8c2c074db0c1c104c26a7b23d9d9b6f (diff) |
Fix $replace parameter handling in get_config()
Code was reached only on first function call, then short-circuited because of the reference cache.
Diffstat (limited to 'system/core/CodeIgniter.php')
-rw-r--r-- | system/core/CodeIgniter.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/core/CodeIgniter.php b/system/core/CodeIgniter.php index a026920a4..c962fda20 100644 --- a/system/core/CodeIgniter.php +++ b/system/core/CodeIgniter.php @@ -88,7 +88,7 @@ defined('BASEPATH') OR exit('No direct script access allowed'); * The subclass prefix allows CI to know if a core class is * being extended via a library in the local application * "libraries" folder. Since CI allows config items to be - * overriden via data set in the main index. php file, + * overriden via data set in the main index.php file, * before proceeding we need to know if a subclass_prefix * override exists. If so, we will set this value now, * before any classes are loaded |