mirror of
https://github.com/WordPress/WordPress.git
synced 2024-12-22 09:07:59 +01:00
Allow comments on private posts to proceed past the comment_on_draft action and exit branch. We handle whether the commenter has the appropriate caps further down. fixes #13276.
git-svn-id: http://svn.automattic.com/wordpress/trunk@14473 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
625f6d8ad5
commit
970943e636
@ -37,7 +37,7 @@ if ( !comments_open($comment_post_ID) ) {
|
||||
} elseif ( 'trash' == $status ) {
|
||||
do_action('comment_on_trash', $comment_post_ID);
|
||||
exit;
|
||||
} elseif ( !$status_obj->public ) {
|
||||
} elseif ( !$status_obj->public && !$status_obj->private ) {
|
||||
do_action('comment_on_draft', $comment_post_ID);
|
||||
exit;
|
||||
} elseif ( post_password_required($comment_post_ID) ) {
|
||||
|
Loading…
Reference in New Issue
Block a user