Pass profile down to spam-hiding function

This commit is contained in:
Evan Prodromou 2012-03-21 13:02:33 -04:00
parent 3cc69c678a
commit ad1649e4ba
1 changed files with 3 additions and 4 deletions

View File

@ -2389,7 +2389,7 @@ class Notice extends Managed_DataObject
if ($scope == 0) { // Not private
return !$this->isHiddenSpam();
return !$this->isHiddenSpam($profile);
} else { // Private, somehow
@ -2461,12 +2461,11 @@ class Notice extends Managed_DataObject
}
}
return !$this->isHiddenSpam();
return !$this->isHiddenSpam($profile);
}
}
function isHiddenSpam() {
function isHiddenSpam($profile) {
// Hide posts by silenced users from everyone but moderators.