Revert "don't show profile page of silenced users"

This reverts commit 7bb59ad2a1.
This commit is contained in:
Evan Prodromou 2011-12-31 09:34:59 -08:00
parent 70f9d41c4c
commit 25f1e16952
1 changed files with 0 additions and 9 deletions

View File

@ -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 {