Merge remote-tracking branch 'remotes/bantu/ticket/11452' into develop

This commit is contained in:
Nathaniel Guse 2013-05-11 20:52:52 -05:00
commit fe13b89dd4

View file

@ -39,7 +39,7 @@ class phpbb_notification_method_email extends phpbb_notification_method_messenge
*/
public function is_available()
{
return (bool) $this->config['email_enable'];
return $this->config['email_enable'] && $this->user->data['user_email'];
}
/**