mirror of
https://github.com/WordPress/WordPress.git
synced 2025-03-09 07:00:01 +00:00
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:
parent
1a203b5328
commit
ed83979728
@ -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;
|
||||
}
|
||||
|
@ -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.
|
||||
|
Loading…
x
Reference in New Issue
Block a user