mirror of
https://github.com/sbrl/Pepperminty-Wiki.git
synced 2024-11-22 16:33:00 +00:00
[stack_trace] in -> calling
This commit is contained in:
parent
7e662bc835
commit
475ae9f805
1 changed files with 1 additions and 1 deletions
2
core.php
2
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 .= ": ";
|
||||
|
|
Loading…
Reference in a new issue