From 475ae9f805394296837c108e3eb5b122e49c579d Mon Sep 17 00:00:00 2001 From: Starbeamrainbowlabs Date: Tue, 25 Oct 2016 15:39:18 +0100 Subject: [PATCH] [stack_trace] in -> calling --- core.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core.php b/core.php index b865cc6..c1722c8 100644 --- a/core.php +++ b/core.php @@ -472,7 +472,7 @@ function stack_trace($log_trace = true, $full = false) $result .= (isset($stackEntry["file"]) ? $stackEntry["file"] : "(unknown file)") . ":" . (isset($stackEntry["line"]) ? $stackEntry["line"] : "(unknown line)") . " - "; if(isset($stackEntry["function"])) { - $result .= "(in " . $stackEntry["function"]; + $result .= "(calling " . $stackEntry["function"]; if(isset($stackEntry["args"]) && count($stackEntry["args"])) { $result .= ": ";