1
0
Fork 0
mirror of https://github.com/sbrl/Pepperminty-Wiki.git synced 2024-06-01 22:03:02 +00:00

[stack_trace] in -> calling

This commit is contained in:
Starbeamrainbowlabs 2016-10-25 15:39:18 +01:00 committed by GitHub
parent 7e662bc835
commit 475ae9f805

View file

@ -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 .= ": ";