From b3ec94252c0c96e0093fff4736fb10e80c615b24 Mon Sep 17 00:00:00 2001 From: and-ers Date: Thu, 3 Jan 2013 16:05:12 +0100 Subject: Replaced array_push function reference with a faster ordinary element insertion method --- system/core/Loader.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'system') 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; } // -------------------------------------------------------------------- -- cgit v1.2.3-24-g4f1b