diff options
author | Derek Jones <derek.jones@ellislab.com> | 2008-04-04 20:56:04 +0200 |
---|---|---|
committer | Derek Jones <derek.jones@ellislab.com> | 2008-04-04 20:56:04 +0200 |
commit | 3ad8efe07deb3ec27a205815dc9097c20c728e9b (patch) | |
tree | d2d699b7173505ef6ce317cd0856fa5b03e6aae1 /system/codeigniter/CodeIgniter.php | |
parent | 1ea127ae8a8026af7679526af06ff297d5104104 (diff) |
added constants.php file and implemented constants for file system modes
Diffstat (limited to 'system/codeigniter/CodeIgniter.php')
-rw-r--r-- | system/codeigniter/CodeIgniter.php | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/system/codeigniter/CodeIgniter.php b/system/codeigniter/CodeIgniter.php index 866be35cc..04936b956 100644 --- a/system/codeigniter/CodeIgniter.php +++ b/system/codeigniter/CodeIgniter.php @@ -43,7 +43,14 @@ require(BASEPATH.'codeigniter/Common'.EXT); * ------------------------------------------------------
*/
require(BASEPATH.'codeigniter/Compat'.EXT);
-
+
+/*
+ * ------------------------------------------------------
+ * Load the compatibility override functions
+ * ------------------------------------------------------
+ */
+require(APPPATH.'config/constants'.EXT);
+
/*
* ------------------------------------------------------
* Define a custom error handler so we can log PHP errors
|