diff options
author | Andrey Andreev <narf@bofh.bg> | 2013-01-04 00:07:58 +0100 |
---|---|---|
committer | Andrey Andreev <narf@bofh.bg> | 2013-01-04 00:07:58 +0100 |
commit | d533ce99fd95804f40fd2bd0b08032ab712e15b0 (patch) | |
tree | df0b0d2824403004e41669a5f81e60ed3735ea59 /system/core/Loader.php | |
parent | 7ea8d014c885bb5ac83f9b02aa764c661acfd87a (diff) | |
parent | b3ec94252c0c96e0093fff4736fb10e80c615b24 (diff) |
Merge pull request #2113 from and-ers/develop
Easy optimization
Diffstat (limited to 'system/core/Loader.php')
-rw-r--r-- | system/core/Loader.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/core/Loader.php b/system/core/Loader.php index 3f20675a7..5e6c40050 100644 --- a/system/core/Loader.php +++ b/system/core/Loader.php @@ -714,7 +714,7 @@ class CI_Loader { // Add config file path $config =& $this->_ci_get_component('config'); - array_push($config->_config_paths, $path); + $config->_config_paths[] = $path; } // -------------------------------------------------------------------- |