]> git.mxchange.org Git - friendica.git/blobdiff - src/App.php
No timeout problem anymore in preview.
[friendica.git] / src / App.php
index c416a0b126d180bfda848a4e004607ed2886d5ab..4b65afd797755f471b00b4fdbbee45b9f51269dc 100644 (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);