diff options
author | Mario <mario@mariovavti.com> | 2022-10-20 19:25:01 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2022-10-20 19:25:01 +0000 |
commit | 7ca289edd0d568a51dfdf225a5ef0e9663c38838 (patch) | |
tree | 5af544fa0ff7ca29fad5b57240a7ed2d66c5b2cf /Zotlabs/Daemon | |
parent | bf434818d7cfac6bf29482d4bb07fc567de2fc90 (diff) | |
download | volse-hubzilla-7ca289edd0d568a51dfdf225a5ef0e9663c38838.tar.gz volse-hubzilla-7ca289edd0d568a51dfdf225a5ef0e9663c38838.tar.bz2 volse-hubzilla-7ca289edd0d568a51dfdf225a5ef0e9663c38838.zip |
fix php warnings
Diffstat (limited to 'Zotlabs/Daemon')
-rw-r--r-- | Zotlabs/Daemon/Notifier.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Zotlabs/Daemon/Notifier.php b/Zotlabs/Daemon/Notifier.php index 776cf4f63..f9e1d13d5 100644 --- a/Zotlabs/Daemon/Notifier.php +++ b/Zotlabs/Daemon/Notifier.php @@ -113,8 +113,8 @@ class Notifier { $normal_mode = true; $upstream = false; $uplink = false; - $target_item = []; - $parent_item = []; + $target_item = null; + $parent_item = null; $top_level_post = false; $relay_to_owner = false; @@ -651,7 +651,7 @@ class Notifier { // This shouldn't produce false positives on comment boosts that were generated on other platforms // because we won't be delivering them. - if (isset($target_item) && isset($target_item['verb']) && $target_item['verb'] === 'Announce' && $target_item['author_xchan'] === $target_item['owner_xchan'] && ! intval($target_item['item_thread_top'])) { + if (isset($target_item['verb']) && $target_item['verb'] === 'Announce' && $target_item['author_xchan'] === $target_item['owner_xchan'] && ! intval($target_item['item_thread_top'])) { continue; } @@ -694,7 +694,7 @@ class Notifier { } - if ($normal_mode) { + if ($normal_mode && is_array($target_item)) { // This wastes a process if there are no delivery hooks configured, so check this before launching the new process $x = q("select * from hook where hook = 'notifier_normal'"); if ($x) { |