From: Evan Prodromou Date: Sat, 31 Dec 2011 17:34:59 +0000 (-0800) Subject: Revert "don't show profile page of silenced users" X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=25f1e169520568bcfa61eaf281eee2fbb1f9b6e0;p=quix0rs-gnu-social.git Revert "don't show profile page of silenced users" This reverts commit 7bb59ad2a154c75949d856c84dced71b2fe59a20. --- diff --git a/actions/showstream.php b/actions/showstream.php index 4a7d758380..a3b1794313 100644 --- a/actions/showstream.php +++ b/actions/showstream.php @@ -63,15 +63,6 @@ class ShowstreamAction extends ProfileAction $p = Profile::current(); - // Only the user him/herself, or someone with the power to unsilence, - // can view the page of a silenced user. - - if (($this->profile->hasRole(Profile_role::SILENCED)) && - (empty($p) || (($p->id != $this->profile->id) && (!$p->hasRight(Right::SILENCEUSER))))) { - throw new ServerException(sprintf(_("User %s has been silenced."), $this->profile->nickname), - 403); - } - if (empty($this->tag)) { $stream = new ProfileNoticeStream($this->profile, $p); } else {