summaryrefslogtreecommitdiffstats
path: root/system/core/Loader.php
diff options
context:
space:
mode:
authorAndrey Andreev <narf@devilix.net>2013-05-17 14:06:46 +0200
committerAndrey Andreev <narf@devilix.net>2013-05-17 14:06:46 +0200
commitd4d80223ccef8fd3606f3a89d33afbfe95226bd8 (patch)
tree85d5ee9d60270b605ba1a9dc3bd50a26274667cc /system/core/Loader.php
parent88e7ad52dc59db7dd28179db6e251eb6b538e97d (diff)
parentfadb82230ba29b4c8a1e5f97092f7d775491f340 (diff)
Merge pull request #2442 from vlakoff/develop-3
Do not trigger a possible custom autoloader, as it is irrelevant here
Diffstat (limited to 'system/core/Loader.php')
-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 0a5cf5b84..49bd641b1 100644
--- a/system/core/Loader.php
+++ b/system/core/Loader.php
@@ -658,7 +658,7 @@ class CI_Loader {
return FALSE;
}
- if ( ! class_exists('CI_Driver_Library'))
+ if ( ! class_exists('CI_Driver_Library', FALSE))
{
// We aren't instantiating an object here, just making the base class available
require BASEPATH.'libraries/Driver.php';