summaryrefslogtreecommitdiff
path: root/it_debug.class
diff options
context:
space:
mode:
authorUrban Müller2011-06-27 13:15:30 +0000
committerUrban Müller2011-06-27 13:15:30 +0000
commit2992afc8ed18b066fcbe3a3ea7687a445365ac19 (patch)
treef00ffea533b814653febaa49ddbfe0f8d1dd2a0b /it_debug.class
parented29f152dd09160358a14bdc48d6aaa3bc57c289 (diff)
downloaditools-2992afc8ed18b066fcbe3a3ea7687a445365ac19.tar.gz
itools-2992afc8ed18b066fcbe3a3ea7687a445365ac19.tar.bz2
itools-2992afc8ed18b066fcbe3a3ea7687a445365ac19.zip
fix php line number off by one
Diffstat (limited to 'it_debug.class')
-rw-r--r--it_debug.class3
1 files changed, 3 insertions, 0 deletions
diff --git a/it_debug.class b/it_debug.class
index 941576c..b86c8f9 100644
--- a/it_debug.class
+++ b/it_debug.class
@@ -188,6 +188,9 @@ function backtrace($p = array())
{
if (($fn = $call['file']) && !it::match($p['skipfiles'], $call['file']))
{
+ if (!it::match('\.class', $call['file']) && file_get_contents($call['file'], null, null, 0, 2) == "#!")
+ $call['line']++; # fix bug in php error line reporting
+
$fn = (it::match('auto_prepend', $fn) ? basename(dirname(dirname($fn))) . "/" : "") . basename($fn);
$result[] = $fn . ":" . $call['line'];