From 550ede8d60aab7042d770b7064e1fe778354950d Mon Sep 17 00:00:00 2001 From: ryan Date: Wed, 5 Jul 2006 20:34:19 +0000 Subject: [PATCH] wp_die() for comment errors. Props filosofo. fixes #1786 git-svn-id: http://svn.automattic.com/wordpress/trunk@3984 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-comments-post.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/wp-comments-post.php b/wp-comments-post.php index 2e561b2681..f2954f2fb9 100644 --- a/wp-comments-post.php +++ b/wp-comments-post.php @@ -12,7 +12,7 @@ if ( empty($status->comment_status) ) { exit; } elseif ( 'closed' == $status->comment_status ) { do_action('comment_closed', $comment_post_ID); - die( __('Sorry, comments are closed for this item.') ); + wp_die( __('Sorry, comments are closed for this item.') ); } elseif ( 'draft' == $status->post_status ) { do_action('comment_on_draft', $comment_post_ID); exit; @@ -31,20 +31,20 @@ if ( $user->ID ) : $comment_author_url = $wpdb->escape($user->user_url); else : if ( get_option('comment_registration') ) - die( __('Sorry, you must be logged in to post a comment.') ); + wp_die( __('Sorry, you must be logged in to post a comment.') ); endif; $comment_type = ''; if ( get_settings('require_name_email') && !$user->ID ) { if ( 6 > strlen($comment_author_email) || '' == $comment_author ) - 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)) - die( __('Error: please enter a valid email address.') ); + wp_die( __('Error: please enter a valid email address.') ); } if ( '' == $comment_content ) - die( __('Error: please type a comment.') ); + wp_die( __('Error: please type a comment.') ); $commentdata = compact('comment_post_ID', 'comment_author', 'comment_author_email', 'comment_author_url', 'comment_content', 'comment_type', 'user_ID');