summaryrefslogtreecommitdiffstats
path: root/system/core
diff options
context:
space:
mode:
authorversalle88 <andrew.versalle@gmail.com>2016-02-23 17:44:35 +0100
committerversalle88 <andrew.versalle@gmail.com>2016-02-23 17:44:35 +0100
commit7230d5dea1e2fa6b242df2b840ad2dc54f0306b0 (patch)
tree70436fb5a1f9303e5f8b711a9ab0bae7c25162f2 /system/core
parenta64d2262e37ea9308865f5d81c1b1ccdfaa52721 (diff)
Changed calls to class_exists to ignore __autoload() to match other calls
Diffstat (limited to 'system/core')
-rw-r--r--system/core/Loader.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/system/core/Loader.php b/system/core/Loader.php
index 80de804ea..62781a7bf 100644
--- a/system/core/Loader.php
+++ b/system/core/Loader.php
@@ -321,7 +321,7 @@ class CI_Loader {
}
$model = ucfirst($model);
- if ( ! class_exists($model))
+ if ( ! class_exists($model, FALSE))
{
foreach ($this->_ci_model_paths as $mod_path)
{