Pass profile down to spam-hiding function

This commit is contained in:
Evan Prodromou 2012-03-21 13:02:33 -04:00
parent d03ca746f2
commit b95de95463

View File

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