From 1d3c9c36e615598fe84e813dfa920616c6d19204 Mon Sep 17 00:00:00 2001 From: Nathan Gass Date: Thu, 29 Sep 2022 15:58:40 +0200 Subject: skip calls without info as before --- it_debug.class | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/it_debug.class b/it_debug.class index efbf7cc..3361933 100644 --- a/it_debug.class +++ b/it_debug.class @@ -227,7 +227,8 @@ static function backtrace($p = array()) { $fn = $call['file']; $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 ($fn) + $result[] = $fn . ":" . $call['line']; } return implode(" ", (array)$result); -- cgit v1.2.3