Revert "when silencing, blow scope for not-logged-in users"

This reverts commit 04f71a42d3.
This commit is contained in:
Evan Prodromou 2011-12-31 09:35:22 -08:00
parent 25f1e16952
commit 3117c38044
1 changed files with 0 additions and 9 deletions

View File

@ -1139,20 +1139,11 @@ class Profile extends Managed_DataObject
function silence()
{
$this->grantRole(Profile_role::SILENCED);
$this->blowRecentNoticeScope();
}
function unsilence()
{
$this->revokeRole(Profile_role::SILENCED);
$this->blowRecentNoticeScope();
}
function blowRecentNoticeScope() {
$notice = $this->getNotices(0, CachingNoticeStream::CACHE_WINDOW);
while ($notice->fetch()) {
self::blow(sprintf('notice:in-scope-for:%d:null', $notice->id));
}
}
/**