diff options
author | Brion Vibber <brion@pobox.com> | 2009-11-27 14:52:58 -0800 |
---|---|---|
committer | Brion Vibber <brion@pobox.com> | 2009-11-27 14:54:55 -0800 |
commit | 496547699847761b0dfcc0d51182e28298428db4 (patch) | |
tree | b3df2d20e5f71442d5d468eb3f7f28fd0707d0b9 /classes | |
parent | 2ba67e9b6284043d39656d0476605bc8235edfd2 (diff) |
Fix regression in group posting: bug introduced in commit 1319002e1519fafb0e82fbfd2d2723abdb3112e7. Need to use actual profile object rather than an id on a variable that doesn't exist when checking blocks :D
Diffstat (limited to 'classes')
-rw-r--r-- | classes/Notice.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/classes/Notice.php b/classes/Notice.php index 3126cc064..661072156 100644 --- a/classes/Notice.php +++ b/classes/Notice.php @@ -922,13 +922,14 @@ class Notice extends Memcached_DataObject } $groups = $this->saveGroups(); + $profile = $this->getProfile(); foreach ($groups as $group) { $users = $group->getUserMembers(); foreach ($users as $id) { if (!array_key_exists($id, $ni)) { $user = User::staticGet('id', $id); - if (!$user->hasBlocked($notice->profile_id)) { + if (!$user->hasBlocked($profile)) { $ni[$id] = NOTICE_INBOX_SOURCE_GROUP; } } |