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 | babfb29332501d63a7be59d1dbed864d128ffdae (patch) | |
tree | a7c8b331e32c2524f111f7e20c643a8011b40bb0 /system | |
parent | 154da11c5bb4b7dc5c225f4fa018852ee45cc6eb (diff) |
Added the constant CI_CORE to help differentiate between Core: TRUE and Reactor: FALSE.
Diffstat (limited to 'system')
-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 2d3f24958..1c06488f0 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 * ------------------------------------------------------ */ |