diff options
author | Andrey Andreev <narf@bofh.bg> | 2012-06-20 10:05:01 +0200 |
---|---|---|
committer | Andrey Andreev <narf@bofh.bg> | 2012-06-20 10:05:01 +0200 |
commit | 2f0dce0fa788c442c85318afc30122afb20a880b (patch) | |
tree | b22b174844bc3bda3229b4fcc1e7dbb5914275fc /system | |
parent | af6d85088d54ed35f7c36ed010384ff7592f8959 (diff) |
Small adjustment due to 079fbfcde095230f304e889217f897031a948f61
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 4ec20f45d..a99444167 100644 --- a/system/database/DB_driver.php +++ b/system/database/DB_driver.php @@ -1281,7 +1281,7 @@ abstract class CI_DB_driver { if (isset($call['file']) && strpos($call['file'], BASEPATH.'database') === FALSE) { // Found it - use a relative path for safety - $message[] = 'Filename: '.str_replace(array(BASEPATH, APPPATH), '', $call['file']); + $message[] = 'Filename: '.str_replace(array(APPPATH, BASEPATH), '', $call['file']); $message[] = 'Line Number: '.$call['line']; break; } |