From d663c7892a159fe2cc09e2f8065237fb2b701bb9 Mon Sep 17 00:00:00 2001 From: Shish Date: Sat, 28 Jan 2023 19:02:41 +0000 Subject: [PATCH] fix stringing --- core/util.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/util.php b/core/util.php index 01f5373d..997f83fd 100644 --- a/core/util.php +++ b/core/util.php @@ -635,7 +635,7 @@ function _fatal_error(\Exception $e): void foreach ($t as $n => $f) { $c = $f['class'] ?? ''; $t = $f['type'] ?? ''; - $a = implode(", ", array_map("stringer", $f['args'])); + $a = implode(", ", array_map("Shimmie2\stringer", $f['args'])); print("$n: {$f['file']}({$f['line']}): {$c}{$t}{$f['function']}({$a})\n"); }