diff options
author | friendica <info@friendica.com> | 2012-05-17 19:35:24 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-05-17 19:35:24 -0700 |
commit | d5d853f37f5b42d4b78f823ed0fb154064ee0e70 (patch) | |
tree | b582e2b4606637a64cc28d86c49124c7b5dcee61 /include | |
parent | 4f0e26759c2cc6cc08adc2bd94e85e4821194f2b (diff) | |
download | volse-hubzilla-d5d853f37f5b42d4b78f823ed0fb154064ee0e70.tar.gz volse-hubzilla-d5d853f37f5b42d4b78f823ed0fb154064ee0e70.tar.bz2 volse-hubzilla-d5d853f37f5b42d4b78f823ed0fb154064ee0e70.zip |
setup delivery chain for private groups (work in progress)
Diffstat (limited to 'include')
-rw-r--r-- | include/items.php | 47 |
1 files changed, 26 insertions, 21 deletions
diff --git a/include/items.php b/include/items.php index 129499967..51e21d289 100644 --- a/include/items.php +++ b/include/items.php @@ -959,6 +959,8 @@ function tag_deliver($uid,$item_id) { return; $community_page = (($u[0]['page-flags'] == PAGE_COMMUNITY) ? true : false); + $prvgroup = (($u[0]['page-flags'] == PAGE_PRVGROUP) ? true : false); + $i = q("select * from item where id = %d and uid = %d limit 1", intval($item_id), @@ -986,30 +988,33 @@ function tag_deliver($uid,$item_id) { } } - if(! $mention) + if((! $mention) && (! $prvgroup)) return; - // send a notification - - require_once('include/enotify.php'); - notification(array( - 'type' => NOTIFY_TAGSELF, - 'notify_flags' => $u[0]['notify-flags'], - 'language' => $u[0]['language'], - 'to_name' => $u[0]['username'], - 'to_email' => $u[0]['email'], - 'uid' => $u[0]['uid'], - 'item' => $item, - 'link' => $a->get_baseurl() . '/display/' . $u[0]['nickname'] . '/' . $item['id'], - 'source_name' => $item['author-name'], - 'source_link' => $item['author-link'], - 'source_photo' => $item['author-avatar'], - 'verb' => ACTIVITY_TAG, - 'otype' => 'item' - )); + if($mention) { - if(! $community_page) - return; + // send a notification + + require_once('include/enotify.php'); + notification(array( + 'type' => NOTIFY_TAGSELF, + 'notify_flags' => $u[0]['notify-flags'], + 'language' => $u[0]['language'], + 'to_name' => $u[0]['username'], + 'to_email' => $u[0]['email'], + 'uid' => $u[0]['uid'], + 'item' => $item, + 'link' => $a->get_baseurl() . '/display/' . $u[0]['nickname'] . '/' . $item['id'], + 'source_name' => $item['author-name'], + 'source_link' => $item['author-link'], + 'source_photo' => $item['author-avatar'], + 'verb' => ACTIVITY_TAG, + 'otype' => 'item' + )); + + if(! $community_page) + return; + } // tgroup delivery - setup a second delivery chain // prevent delivery looping - only proceed |