mirror of
https://github.com/friendica/friendica
synced 2024-11-19 20:23:40 +00:00
Merge pull request #4801 from annando/ignore-callstack
Ignore function "call_user_func_array" in the callstack
This commit is contained in:
commit
799bd75fb2
1 changed files with 1 additions and 1 deletions
|
@ -60,7 +60,7 @@ class System extends BaseObject
|
|||
$previous = ['class' => '', 'function' => ''];
|
||||
|
||||
// The ignore list contains all functions that are only wrapper functions
|
||||
$ignore = ['fetchUrl'];
|
||||
$ignore = ['fetchUrl', 'call_user_func_array'];
|
||||
|
||||
while ($func = array_pop($trace)) {
|
||||
if (!empty($func['class'])) {
|
||||
|
|
Loading…
Reference in a new issue