diff options
author | Andrey Andreev <narf@bofh.bg> | 2013-02-21 15:30:55 +0100 |
---|---|---|
committer | Andrey Andreev <narf@bofh.bg> | 2013-02-21 15:30:55 +0100 |
commit | 49e68de96b420a444c826995746a5f09470e76d9 (patch) | |
tree | c71077bcb4c1bf83971928cec589646ad445343d /system/core/Output.php | |
parent | 3e01437a5b23d9ffdf1b1cc9fc0a0f8b66551342 (diff) |
Disable autoloader call from class_exists() occurences to improve performance
Note: The Driver libary tests seem to depend on that, so one occurence in CI_Loader is left until we resolve that.
Diffstat (limited to 'system/core/Output.php')
-rw-r--r-- | system/core/Output.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/core/Output.php b/system/core/Output.php index a20841463..25ecd496c 100644 --- a/system/core/Output.php +++ b/system/core/Output.php @@ -395,7 +395,7 @@ class CI_Output { global $BM, $CFG; // Grab the super object if we can. - if (class_exists('CI_Controller')) + if (class_exists('CI_Controller', FALSE)) { $CI =& get_instance(); } |