diff options
author | Jonathan Bonnefoy <contact@e-weap.fr> | 2012-09-05 15:41:42 +0200 |
---|---|---|
committer | Jonathan Bonnefoy <contact@e-weap.fr> | 2012-09-05 15:41:42 +0200 |
commit | 44558109c8fc0ae7a223e6fae6b44f6598b2d3ad (patch) | |
tree | dd11a88e55d3e7f8a6ef48280504ad669326f726 /system | |
parent | 9ffcee60140b20ca3ec4e7688f83a039c7c080f7 (diff) |
Database display error supporting "Loader.php" and "MY_Loader.php"
Diffstat (limited to 'system')
-rw-r--r-- | system/database/DB_driver.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/database/DB_driver.php b/system/database/DB_driver.php index 4296815f8..76f9433d2 100644 --- a/system/database/DB_driver.php +++ b/system/database/DB_driver.php @@ -1353,7 +1353,7 @@ abstract class CI_DB_driver { $trace = debug_backtrace(); foreach ($trace as $call) { - if (isset($call['file']) && strpos($call['file'], BASEPATH.'database') === FALSE) + if (isset($call['file']) && strpos($call['file'], BASEPATH.'database') === FALSE && preg_match('#core/(MY_)?Loader#', $call['file']) === 0 ) { // Found it - use a relative path for safety $message[] = 'Filename: '.str_replace(array(APPPATH, BASEPATH), '', $call['file']); |