Some more changed queries

This commit is contained in:
Michael 2017-08-11 16:21:55 +00:00
parent d352a290fe
commit 99f0c01cdd
3 changed files with 23 additions and 20 deletions

View file

@ -760,7 +760,11 @@ class App {
$callstack = array();
foreach ($trace AS $func) {
$callstack[] = $func['function'];
if (!empty($func['class'])) {
$callstack[] = $func['class'].'::'.$func['function'];
} else {
$callstack[] = $func['function'];
}
}
return implode(', ', $callstack);