diff options
author | Andrey Andreev <narf@bofh.bg> | 2012-09-12 13:44:26 +0200 |
---|---|---|
committer | Andrey Andreev <narf@bofh.bg> | 2012-09-12 13:44:26 +0200 |
commit | e3162843d9c2ca7e35f09741b6a361813473d4c5 (patch) | |
tree | 8d9e9a5adcadaf8d004184958a85b1bd43a4d319 /system/database | |
parent | f7e23b3357c73cc9eb50c59f444181fcfaa2267d (diff) |
Minor adjustments
Diffstat (limited to 'system/database')
-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 9628e9a9e..e61af91b7 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 && isset($call['class']) && strpos($call['class'], 'Loader') !== FALSE) + if (isset($call['file'], $call['class']) && strpos($call['file'], BASEPATH.'database') === FALSE && strpos($call['class'], 'Loader') !== FALSE) { // Found it - use a relative path for safety $message[] = 'Filename: '.str_replace(array(APPPATH, BASEPATH), '', $call['file']); |