check for notification flags in FavCommand

darcs-hash:20081004174519-5ed1f-1b9f8d1f12c895eacead8703cbfb088a135e810c.gz
This commit is contained in:
Evan Prodromou 2008-10-04 13:45:19 -04:00
parent 0bd199f5cc
commit a5a3548212
1 changed files with 8 additions and 1 deletions

View File

@ -133,7 +133,14 @@ class FavCommand extends Command {
return;
}
mail_notify_fave($recipient, $this->user, $notice);
$other = User::staticGet('id', $recipient->id);
if ($other && $other->id != $user->id) {
if ($other->email && $other->emailnotifyfav) {
mail_notify_fave($other, $this->user, $notice);
}
}
$this->user->blowFavesCache();
$channel->output($this->user, _('Notice marked as fave.'));