diff options
author | Daniel Hunsaker <danhunsaker@gmail.com> | 2013-03-04 10:31:26 +0100 |
---|---|---|
committer | Daniel Hunsaker <danhunsaker@gmail.com> | 2013-03-04 10:31:26 +0100 |
commit | b2ac67a3a766ac18f5041eff7a5cbeef7437a184 (patch) | |
tree | 9d4fe206b6d14ae5b2921e247282ea23a8836cac /system/core/CodeIgniter.php | |
parent | 50dfe0175df02fe4aa243757bdf1b42fb9fc3169 (diff) |
Oops, missed a few places where EXIT_SUCCESS was being used.
Signed-off-by: Daniel Hunsaker <danhunsaker@gmail.com>
Diffstat (limited to 'system/core/CodeIgniter.php')
-rw-r--r-- | system/core/CodeIgniter.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/core/CodeIgniter.php b/system/core/CodeIgniter.php index 8f5271add..7f76977b5 100644 --- a/system/core/CodeIgniter.php +++ b/system/core/CodeIgniter.php @@ -188,7 +188,7 @@ defined('BASEPATH') OR exit('No direct script access allowed'); if ($EXT->call_hook('cache_override') === FALSE && $OUT->_display_cache($CFG, $URI) === TRUE) { - exit(EXIT_SUCCESS); + exit; } /* |