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:
Ryan Boren 2009-11-29 20:05:39 +00:00
parent a0ea0aa4ed
commit 2a1dcbf551
1 changed files with 1 additions and 1 deletions

View File

@ -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 )