X-Git-Url: https://scripts.mit.edu/gitweb/autoinstalls/wordpress.git/blobdiff_plain/fef8173b8c3bad08f495551e43cfdeac1cae6021..8a4706fdeb1ae30268e510df6ccf3c39b3028059:/wp-comments-post.php diff --git a/wp-comments-post.php b/wp-comments-post.php index 9c17a355..194e00f5 100644 --- a/wp-comments-post.php +++ b/wp-comments-post.php @@ -54,7 +54,7 @@ $comment_content = ( isset($_POST['comment']) ) ? trim($_POST['comment']) : // If the user is logged in $user = wp_get_current_user(); -if ( $user->ID ) { +if ( $user->exists() ) { if ( empty( $user->display_name ) ) $user->display_name=$user->user_login; $comment_author = $wpdb->escape($user->display_name); @@ -73,15 +73,15 @@ if ( $user->ID ) { $comment_type = ''; -if ( get_option('require_name_email') && !$user->ID ) { +if ( get_option('require_name_email') && !$user->exists() ) { 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; @@ -90,16 +90,10 @@ $commentdata = compact('comment_post_ID', 'comment_author', 'comment_author_emai $comment_id = wp_new_comment( $commentdata ); $comment = get_comment($comment_id); -if ( !$user->ID ) { - $comment_cookie_lifetime = apply_filters('comment_cookie_lifetime', 30000000); - setcookie('comment_author_' . COOKIEHASH, $comment->comment_author, time() + $comment_cookie_lifetime, COOKIEPATH, COOKIE_DOMAIN); - setcookie('comment_author_email_' . COOKIEHASH, $comment->comment_author_email, time() + $comment_cookie_lifetime, COOKIEPATH, COOKIE_DOMAIN); - setcookie('comment_author_url_' . COOKIEHASH, esc_url($comment->comment_author_url), time() + $comment_cookie_lifetime, COOKIEPATH, COOKIE_DOMAIN); -} +do_action('set_comment_cookies', $comment, $user); $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; -?>