From 2992afc8ed18b066fcbe3a3ea7687a445365ac19 Mon Sep 17 00:00:00 2001 From: Urban Müller Date: Mon, 27 Jun 2011 13:15:30 +0000 Subject: fix php line number off by one --- it_debug.class | 3 +++ 1 file changed, 3 insertions(+) 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']; -- cgit v1.2.3