diff options
author | zotlabs <mike@macgirvin.com> | 2017-08-12 15:42:42 -0700 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2017-08-14 21:34:03 +0200 |
commit | 6a3919587fed02d2880e5d416b221ccd8bec4ebf (patch) | |
tree | af965b25947bab1dd881f8739bb212d7d3f94254 | |
parent | 80e7337984494f38c4add654b15cfdb8adb28295 (diff) | |
download | volse-hubzilla-6a3919587fed02d2880e5d416b221ccd8bec4ebf.tar.gz volse-hubzilla-6a3919587fed02d2880e5d416b221ccd8bec4ebf.tar.bz2 volse-hubzilla-6a3919587fed02d2880e5d416b221ccd8bec4ebf.zip |
add parent item (if applicable) to notifier plugin info
-rw-r--r-- | Zotlabs/Daemon/Notifier.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Zotlabs/Daemon/Notifier.php b/Zotlabs/Daemon/Notifier.php index 20dd96ddd..6bca22025 100644 --- a/Zotlabs/Daemon/Notifier.php +++ b/Zotlabs/Daemon/Notifier.php @@ -438,6 +438,7 @@ class Notifier { 'recipients' => $recipients, 'item' => $item, 'target_item' => $target_item, + 'parent_item' => $parent_item, 'top_level_post' => $top_level_post, 'private' => $private, 'relay_to_owner' => $relay_to_owner, @@ -544,6 +545,7 @@ class Notifier { 'recipients' => $recipients, 'item' => $item, 'target_item' => $target_item, + 'parent_item' => $parent_item, 'hub' => $hub, 'top_level_post' => $top_level_post, 'private' => $private, |