From edc6373994744c1e304b03976c4425d46ea2ea84 Mon Sep 17 00:00:00 2001 From: Christian Schneider Date: Wed, 20 Feb 2019 13:48:02 +0100 Subject: Add bin/ or cgi/ to xy.php as we may have scripts in both places so 'e' command opens correct file --- it_debug.class | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/it_debug.class b/it_debug.class index 8dc12c2..f7141be 100644 --- a/it_debug.class +++ b/it_debug.class @@ -180,7 +180,7 @@ static function backtrace($p = array()) { if (($fn = $call['file']) && !it::match($p['skipfiles'], $call['file'])) { - $fn = (it::match('auto_prepend', $fn) ? basename(dirname(dirname($fn))) . "/" : "") . basename($fn); + $fn = (it::match('auto_prepend', $fn) ? basename(dirname(dirname($fn))) . "/" : (it::match('/(cgi|bin)/', $fn) ? basename(dirname($fn)) . "/" : "")) . basename($fn); $result[] = $fn . ":" . $call['line']; if (--$p['levels'] == 0) -- cgit v1.2.3