diff options
author | Phil Sturgeon <email@philsturgeon.co.uk> | 2011-03-08 22:56:08 +0100 |
---|---|---|
committer | Phil Sturgeon <email@philsturgeon.co.uk> | 2011-03-08 22:56:08 +0100 |
commit | 2f8b27efeb0a39c24eddf89cf31ea0fd113a6b71 (patch) | |
tree | 86307208e59113214c138067f35a50442d200851 /system/core/CodeIgniter.php | |
parent | 71018b31bd3d2590e71f11a1d3918ce952be0b23 (diff) |
Added the constant CI_CORE to help differentiate between Core: TRUE and Reactor: FALSE.
Diffstat (limited to 'system/core/CodeIgniter.php')
-rw-r--r-- | system/core/CodeIgniter.php | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/system/core/CodeIgniter.php b/system/core/CodeIgniter.php index 567e67f65..b91ed3896 100644 --- a/system/core/CodeIgniter.php +++ b/system/core/CodeIgniter.php @@ -36,6 +36,13 @@ /* * ------------------------------------------------------ + * Define the CodeIgniter Branch (Core = TRUE, Reactor = FALSE) + * ------------------------------------------------------ + */ + define('CI_CORE', FALSE); + +/* + * ------------------------------------------------------ * Load the global functions * ------------------------------------------------------ */ |