comment status transition was broken due to sneaky reference return in &get_comment. Props skeltoac
git-svn-id: https://develop.svn.wordpress.org/trunk@12292 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
a0ea0aa4ed
commit
2a1dcbf551
@ -1262,7 +1262,7 @@ function wp_set_comment_status($comment_id, $comment_status, $wp_error = false)
|
||||
return false;
|
||||
}
|
||||
|
||||
$comment_old = get_comment($comment_id);
|
||||
$comment_old = wp_clone(get_comment($comment_id));
|
||||
|
||||
if ( !$wpdb->update( $wpdb->comments, array('comment_approved' => $status), array('comment_ID' => $comment_id) ) ) {
|
||||
if ( $wp_error )
|
||||
|
Loading…
x
Reference in New Issue
Block a user