X-Git-Url: https://scripts.mit.edu/gitweb/autoinstalls/wordpress.git/blobdiff_plain/f9001779751f83dc8a10e478bfecb4d8dd5f964c..refs/tags/wordpress-3.3.1-scripts:/wp-comments-post.php diff --git a/wp-comments-post.php b/wp-comments-post.php index 9c17a355..648388f4 100644 --- a/wp-comments-post.php +++ b/wp-comments-post.php @@ -75,13 +75,13 @@ $comment_type = ''; if ( get_option('require_name_email') && !$user->ID ) { if ( 6 > strlen($comment_author_email) || '' == $comment_author ) - wp_die( __('Error: please fill the required fields (name, email).') ); + wp_die( __('ERROR: please fill the required fields (name, email).') ); elseif ( !is_email($comment_author_email)) - wp_die( __('Error: please enter a valid email address.') ); + wp_die( __('ERROR: please enter a valid email address.') ); } if ( '' == $comment_content ) - wp_die( __('Error: please type a comment.') ); + wp_die( __('ERROR: please type a comment.') ); $comment_parent = isset($_POST['comment_parent']) ? absint($_POST['comment_parent']) : 0;