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

This commit is contained in:
Evan Prodromou 2011-12-31 09:15:32 -08:00
parent 7bb59ad2a1
commit 04f71a42d3
1 changed files with 9 additions and 0 deletions

View File

@ -1139,11 +1139,20 @@ 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));
}
}
/**