AJAX Reply to Comment: check the edit_comment cap when parent comment will be auto-approved.

Props rachelbaker.
Fixes #23939.

Built from https://develop.svn.wordpress.org/trunk@34074


git-svn-id: http://core.svn.wordpress.org/trunk@34042 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Scott Taylor 2015-09-12 07:19:25 +00:00
parent 1a203b5328
commit ed83979728
2 changed files with 5 additions and 1 deletions

View File

@ -1011,6 +1011,10 @@ function wp_ajax_replyto_comment( $action ) {
$parent = get_comment( $comment_parent );
if ( $parent && $parent->comment_approved === '0' && $parent->comment_post_ID == $comment_post_ID ) {
if ( ! current_user_can( 'edit_comment', $parent->comment_ID ) ) {
wp_die( -1 );
}
if ( wp_set_comment_status( $parent->comment_ID, 'approve' ) )
$comment_auto_approved = true;
}

View File

@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
$wp_version = '4.4-alpha-34073';
$wp_version = '4.4-alpha-34074';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.