summaryrefslogtreecommitdiffstats
path: root/system/core/CodeIgniter.php
diff options
context:
space:
mode:
authorGreg Aker <greg@gregaker.net>2011-12-27 23:23:47 +0100
committerGreg Aker <greg@gregaker.net>2011-12-27 23:23:47 +0100
commitd96f88277c1e9a4c069c2e2ee3d779385549f31a (patch)
tree5d3f9fb534ca9fa17635ddcd8c3d38abe51deec2 /system/core/CodeIgniter.php
parentd459cbb96d9c9703ef6c62756240b7c612835e5c (diff)
Revert "Abstracting the loading of files in the config directory depending on environments."
Diffstat (limited to 'system/core/CodeIgniter.php')
-rwxr-xr-xsystem/core/CodeIgniter.php9
1 files changed, 8 insertions, 1 deletions
diff --git a/system/core/CodeIgniter.php b/system/core/CodeIgniter.php
index 04f346c7c..97527e5ca 100755
--- a/system/core/CodeIgniter.php
+++ b/system/core/CodeIgniter.php
@@ -59,7 +59,14 @@
* Load the framework constants
* ------------------------------------------------------
*/
- load_environ_config('constants', TRUE);
+ if (defined('ENVIRONMENT') AND file_exists(APPPATH.'config/'.ENVIRONMENT.'/constants.php'))
+ {
+ require(APPPATH.'config/'.ENVIRONMENT.'/constants.php');
+ }
+ else
+ {
+ require(APPPATH.'config/constants.php');
+ }
/*
* ------------------------------------------------------