mirror of
https://git.sekbaer.de/Friendica/friendica.git
synced 2025-06-12 01:54:26 +02:00
Some more changed queries
This commit is contained in:
parent
d352a290fe
commit
99f0c01cdd
3 changed files with 23 additions and 20 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue