Validate comment author email. http://mosquito.wordpress.org/view.php?id=982 Props: MtDewVirus
git-svn-id: https://develop.svn.wordpress.org/trunk@2464 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
61efa3844d
commit
90e6959288
@ -31,8 +31,12 @@ endif;
|
||||
|
||||
$comment_type = '';
|
||||
|
||||
if ( (get_settings('require_name_email') && !$user_ID) && ('' == $comment_author_email || '' == $comment_author) )
|
||||
if ( get_settings('require_name_email') && !$user_ID ) {
|
||||
if ('' == $comment_author_email || '' == $comment_author)
|
||||
die( __('Error: please fill the required fields (name, email).') );
|
||||
elseif ( !is_email($comment_author_email))
|
||||
die( __('Error: please enter a valid email address.') );
|
||||
}
|
||||
|
||||
if ( '' == $comment_content )
|
||||
die( __('Error: please type a comment.') );
|
||||
|
Loading…
Reference in New Issue
Block a user