aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Module/Display.php
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2024-11-14 18:40:15 +0000
committerMario <mario@mariovavti.com>2024-11-14 18:40:15 +0000
commit01da60b385edad423396abd0858ead5d65a41801 (patch)
treeb29b7e6413d0e02e97962e7a99004503f75e97f3 /Zotlabs/Module/Display.php
parent72c47cd8db94032bf05a6956f3f15888772051aa (diff)
parent951800eca6045f6e0dc1e9a12c225c8e55b044e9 (diff)
downloadvolse-hubzilla-01da60b385edad423396abd0858ead5d65a41801.tar.gz
volse-hubzilla-01da60b385edad423396abd0858ead5d65a41801.tar.bz2
volse-hubzilla-01da60b385edad423396abd0858ead5d65a41801.zip
Merge branch 'various-phpstan-issues' into 'dev'
Several issues discovered by PHPStan See merge request hubzilla/core!2168
Diffstat (limited to 'Zotlabs/Module/Display.php')
-rw-r--r--Zotlabs/Module/Display.php7
1 files changed, 6 insertions, 1 deletions
diff --git a/Zotlabs/Module/Display.php b/Zotlabs/Module/Display.php
index 451ddeb1f..090e0c92e 100644
--- a/Zotlabs/Module/Display.php
+++ b/Zotlabs/Module/Display.php
@@ -344,7 +344,12 @@ class Display extends Controller {
'$profile_page' => xmlify(z_root() . '/display/' . gen_link_id($target_item['mid'])),
));
- $x = [ 'xml' => $atom, 'channel' => $channel, 'observer_hash' => $observer_hash, 'params' => $params ];
+ $x = [
+ 'xml' => $atom,
+ 'channel' => $channel,
+ 'observer_hash' => $observer_hash,
+ 'params' => [],
+ ];
call_hooks('atom_feed_top',$x);
$atom = $x['xml'];