diff options
author | Mario Vavti <mario@mariovavti.com> | 2016-09-20 15:21:21 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2016-09-20 15:21:21 +0200 |
commit | fde46ca78c2d082c4f456925532f6da63361d9b0 (patch) | |
tree | 4e47eb0a9b5957438d48deccf248902b80055713 /include/items.php | |
parent | ab59479a0c095c0cebb3b5cb9304850ad54e86d3 (diff) | |
parent | 299c46f118d39ea954ed52fd1b9cab617966db84 (diff) | |
download | volse-hubzilla-fde46ca78c2d082c4f456925532f6da63361d9b0.tar.gz volse-hubzilla-fde46ca78c2d082c4f456925532f6da63361d9b0.tar.bz2 volse-hubzilla-fde46ca78c2d082c4f456925532f6da63361d9b0.zip |
Merge branch 'dev' of https://github.com/redmatrix/hubzilla into dev
Diffstat (limited to 'include/items.php')
-rwxr-xr-x | include/items.php | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/items.php b/include/items.php index 9079621a3..f2be2a114 100755 --- a/include/items.php +++ b/include/items.php @@ -2291,6 +2291,11 @@ function store_diaspora_comment_sig($datarray, $channel, $parent_item, $post_id, function send_status_notifications($post_id,$item) { + // only send notifications for comments + + if($item['mid'] == $item['parent_mid']) + return; + $notify = false; $unfollowed = false; @@ -2306,6 +2311,7 @@ function send_status_notifications($post_id,$item) { if($item['author_xchan'] === $r[0]['channel_hash']) return; + // I'm the owner - notify me if($item['owner_hash'] === $r[0]['channel_hash']) |