Make WordPress Core


Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-comments-post.php

    r12648 r12300  
    2828        do_action('comment_closed', $comment_post_ID);
    2929        wp_die( __('Sorry, comments are closed for this item.') );
    30 } elseif ( in_array($status->post_status, array('draft', 'future', 'pending') ) ) {
     30} elseif ( in_array($status->post_status, array('draft', 'pending') ) ) {
    3131        do_action('comment_on_draft', $comment_post_ID);
    3232        exit;
    3333} elseif ( 'trash' == $status->post_status ) {
    3434        do_action('comment_on_trash', $comment_post_ID);
    35         exit;
    36 } elseif ( post_password_required($comment_post_ID) ) {
    37         do_action('comment_on_password_protected', $comment_post_ID);
    3835        exit;
    3936} else {
Note: See TracChangeset for help on using the changeset viewer.