From 70f9d41c4cc90eeb27d99223567fa5a741082a34 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Sat, 31 Dec 2011 09:34:42 -0800 Subject: [PATCH] Revert "Hide posts by silenced users" This reverts commit d22fc7423ce2365e229fb41e0dae97f069ec2214. --- classes/Notice.php | 23 +++++++---------------- 1 file changed, 7 insertions(+), 16 deletions(-) diff --git a/classes/Notice.php b/classes/Notice.php index 38e41d29f1..9ee5696e3f 100644 --- a/classes/Notice.php +++ b/classes/Notice.php @@ -2381,22 +2381,6 @@ class Notice extends Managed_DataObject $scope = self::defaultScope(); } - $author = $this->getProfile(); - - // Author is always in scope - - if ($author->id == $profile->id) { - return true; - } - - // If the author is silenced, only show to - // folks who can un-silence; note ignores scope - - if ($author->hasRole(Profile_role::SILENCED) && - (empty($profile) || !$profile->hasRight(Right::SILENCEUSER))) { - return false; - } - // If there's no scope, anyone (even anon) is in scope. if ($scope == 0) { @@ -2409,6 +2393,12 @@ class Notice extends Managed_DataObject return false; } + // Author is always in scope + + if ($this->profile_id == $profile->id) { + return true; + } + // Only for users on this site if ($scope & Notice::SITE_SCOPE) { @@ -2455,6 +2445,7 @@ class Notice extends Managed_DataObject // Only for followers of the author if ($scope & Notice::FOLLOWER_SCOPE) { + $author = $this->getProfile(); if (!Subscription::exists($profile, $author)) { return false; } -- 2.39.5