Don't send @-reply notification if the mentioned person has blocked the sender

This commit is contained in:
Evan Prodromou 2012-09-07 10:27:14 -04:00
parent 4b125eed96
commit f21881d5fa
1 changed files with 5 additions and 0 deletions

View File

@ -736,6 +736,11 @@ function mail_notify_attn($user, $notice)
return;
}
if ($user->hasBlocked($sender)) {
// If the author has blocked us, don't spam them with a notification.
return;
}
$bestname = $sender->getBestName();
common_switch_locale($user->language);