Make WordPress Core

Ticket #17976: 17976.4.patch

File 17976.4.patch, 3.2 KB (added by SergeyBiryukov, 12 years ago)
  • wp-comments-post.php

     
    9090$comment_id = wp_new_comment( $commentdata );
    9191
    9292$comment = get_comment($comment_id);
    93 if ( !$user->ID ) {
    94         $comment_cookie_lifetime = apply_filters('comment_cookie_lifetime', 30000000);
    95         setcookie('comment_author_' . COOKIEHASH, $comment->comment_author, time() + $comment_cookie_lifetime, COOKIEPATH, COOKIE_DOMAIN);
    96         setcookie('comment_author_email_' . COOKIEHASH, $comment->comment_author_email, time() + $comment_cookie_lifetime, COOKIEPATH, COOKIE_DOMAIN);
    97         setcookie('comment_author_url_' . COOKIEHASH, esc_url($comment->comment_author_url), time() + $comment_cookie_lifetime, COOKIEPATH, COOKIE_DOMAIN);
    98 }
     93do_action('set_comment_cookies', $comment, $user);
    9994
    10095$location = empty($_POST['redirect_to']) ? get_comment_link($comment_id) : $_POST['redirect_to'] . '#comment-' . $comment_id;
    10196$location = apply_filters('comment_post_redirect', $location, $comment);
  • wp-includes/comment.php

     
    570570        return update_metadata('comment', $comment_id, $meta_key, $meta_value, $prev_value);
    571571}
    572572
     573/** 
     574 * Sets the cookies used to store an unauthenticated commentator's identity. Typically used 
     575 * to recall previous comments by this commentator that are still held in moderation. 
     576 * 
     577 * @param object $comment Comment object.
     578 * @param object $user Comment author's object.
     579 *
     580 * @since 3.3.0
     581 */ 
     582function set_comment_cookies($comment, $user) { 
     583        if ( !$user->ID ) {
     584                $comment_cookie_lifetime = apply_filters('comment_cookie_lifetime', 30000000);
     585                setcookie('comment_author_' . COOKIEHASH, $comment->comment_author, time() + $comment_cookie_lifetime, COOKIEPATH, COOKIE_DOMAIN);
     586                setcookie('comment_author_email_' . COOKIEHASH, $comment->comment_author_email, time() + $comment_cookie_lifetime, COOKIEPATH, COOKIE_DOMAIN);
     587                setcookie('comment_author_url_' . COOKIEHASH, esc_url($comment->comment_author_url), time() + $comment_cookie_lifetime, COOKIEPATH, COOKIE_DOMAIN);
     588        }
     589
     590
    573591/**
    574592 * Sanitizes the cookies sent to the user already.
    575593 *
  • wp-includes/default-filters.php

     
    242242add_action( 'do_feed_atom',               'do_feed_atom',                            10, 1 );
    243243add_action( 'do_pings',                   'do_all_pings',                            10, 1 );
    244244add_action( 'do_robots',                  'do_robots'                                      );
     245add_action( 'set_comment_cookies',        'set_comment_cookies',                     10, 2 );
    245246add_action( 'sanitize_comment_cookies',   'sanitize_comment_cookies'                       );
    246247add_action( 'admin_print_scripts',        'print_head_scripts',                      20    );
    247248add_action( 'admin_print_footer_scripts', '_wp_footer_scripts'                             );