diff options
author | Greg Aker <greg@gregaker.net> | 2011-12-25 08:24:29 +0100 |
---|---|---|
committer | Greg Aker <greg@gregaker.net> | 2011-12-25 08:24:29 +0100 |
commit | 5c1aa631c5f5ec2f6b75ba1158178418e50ba11a (patch) | |
tree | 3dc36050275f67bbb7ba52f92d62609b12291369 /system/core/CodeIgniter.php | |
parent | 11ce5da8c743b5f6592c83a2b91e545d76a8789b (diff) |
Abstracting the loading of files in the config directory depending on environments.
Diffstat (limited to 'system/core/CodeIgniter.php')
-rwxr-xr-x | system/core/CodeIgniter.php | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/system/core/CodeIgniter.php b/system/core/CodeIgniter.php index 97527e5ca..04f346c7c 100755 --- a/system/core/CodeIgniter.php +++ b/system/core/CodeIgniter.php @@ -59,14 +59,7 @@ * Load the framework constants * ------------------------------------------------------ */ - if (defined('ENVIRONMENT') AND file_exists(APPPATH.'config/'.ENVIRONMENT.'/constants.php')) - { - require(APPPATH.'config/'.ENVIRONMENT.'/constants.php'); - } - else - { - require(APPPATH.'config/constants.php'); - } + load_environ_config('constants', TRUE); /* * ------------------------------------------------------ |