summaryrefslogtreecommitdiffstats
path: root/system/database
diff options
context:
space:
mode:
authorvlakoff <vlakoff@gmail.com>2013-05-12 10:57:09 +0200
committervlakoff <vlakoff@gmail.com>2013-05-12 10:57:09 +0200
commitfadb82230ba29b4c8a1e5f97092f7d775491f340 (patch)
tree14fac7027f8168172d0e51a197a2764cf9db9793 /system/database
parent206d951e3da15bf9c69b3b8860c8bd274fb82b6f (diff)
Do not trigger a possible custom autoloader, as it is irrelevant here
These were the last two calls of class_exists() without the $autoloader = FALSE argument.
Diffstat (limited to 'system/database')
-rw-r--r--system/database/DB_driver.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/system/database/DB_driver.php b/system/database/DB_driver.php
index 9239dc154..593d78ba4 100644
--- a/system/database/DB_driver.php
+++ b/system/database/DB_driver.php
@@ -704,7 +704,7 @@ abstract class CI_DB_driver {
{
$driver = 'CI_DB_'.$this->dbdriver.'_result';
- if ( ! class_exists($driver))
+ if ( ! class_exists($driver, FALSE))
{
include_once(BASEPATH.'database/DB_result.php');
include_once(BASEPATH.'database/drivers/'.$this->dbdriver.'/'.$this->dbdriver.'_result.php');