mirror of
https://github.com/friendica/friendica
synced 2025-04-26 23:50:11 +00:00
Merge pull request #3460 from annando/1705-dbclean
dbclean is now using the new database functions
This commit is contained in:
commit
06ea23665c
7 changed files with 124 additions and 89 deletions
|
@ -729,8 +729,8 @@ class App {
|
|||
*
|
||||
* @return string
|
||||
*/
|
||||
function callstack() {
|
||||
$trace = debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS, 6);
|
||||
function callstack($depth = 4) {
|
||||
$trace = debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS, $depth + 2);
|
||||
|
||||
// We remove the first two items from the list since they contain data that we don't need.
|
||||
array_shift($trace);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue