From: Evan Prodromou Date: Sat, 7 Nov 2009 17:22:00 +0000 (-0500) Subject: don't distribute group notices to inboxes for users who've blocked the author X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=1319002e1519fafb0e82fbfd2d2723abdb3112e7;p=quix0rs-gnu-social.git don't distribute group notices to inboxes for users who've blocked the author --- diff --git a/classes/Notice.php b/classes/Notice.php index a9dbaa461b..9886875cb7 100644 --- a/classes/Notice.php +++ b/classes/Notice.php @@ -930,7 +930,10 @@ class Notice extends Memcached_DataObject $users = $group->getUserMembers(); foreach ($users as $id) { if (!array_key_exists($id, $ni)) { - $ni[$id] = NOTICE_INBOX_SOURCE_GROUP; + $user = User::staticGet('id', $id); + if (!$user->hasBlocked($notice->profile_id)) { + $ni[$id] = NOTICE_INBOX_SOURCE_GROUP; + } } } }