summaryrefslogtreecommitdiff
path: root/it_debug.class
diff options
context:
space:
mode:
Diffstat (limited to 'it_debug.class')
-rw-r--r--it_debug.class2
1 files changed, 1 insertions, 1 deletions
diff --git a/it_debug.class b/it_debug.class
index b36c232..1c95acf 100644
--- a/it_debug.class
+++ b/it_debug.class
@@ -250,7 +250,7 @@ static function backtrace($p = array())
if ($frame['type'] == "->" || $frame['type'] == "::")
$funcs[] = $frame['class'] . $frame['type'] . $frame['function'] . "($allargs)";
else
- $funcs[] = $frame['function'] . "($allargs)";
+ $funcs[] = $frame['function'] ? $frame['function'] . "($allargs)" : "[inline]";
$maxlen = max(it::map('strlen', $locations));
}