]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-comments-post.php
WordPress 3.3.2-scripts
[autoinstalls/wordpress.git] / wp-comments-post.php
index e2e12f76cba98cbbe11b66ddd976e4ad8a8dcb83..9f1dc724c42b1e71596c52476df4a8cb0e244dd2 100644 (file)
@@ -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( __('<strong>ERROR</strong>: please fill the required fields (name, email).') );
        elseif ( !is_email($comment_author_email))
-               wp_die( __('Error: please enter a valid email address.') );
+               wp_die( __('<strong>ERROR</strong>: please enter a valid email address.') );
 }
 
 if ( '' == $comment_content )
-       wp_die( __('Error: please type a comment.') );
+       wp_die( __('<strong>ERROR</strong>: please type a comment.') );
 
 $comment_parent = isset($_POST['comment_parent']) ? absint($_POST['comment_parent']) : 0;
 
@@ -100,6 +100,6 @@ if ( !$user->ID ) {
 $location = empty($_POST['redirect_to']) ? get_comment_link($comment_id) : $_POST['redirect_to'] . '#comment-' . $comment_id;
 $location = apply_filters('comment_post_redirect', $location, $comment);
 
-wp_redirect($location);
-
+wp_safe_redirect( $location );
+exit;
 ?>