Ticket #36302: 36302.3.diff
File 36302.3.diff, 1.1 KB (added by , 8 years ago) |
---|
-
src/wp-includes/comment.php
2027 2027 $comment_post_ID = $data['comment_post_ID']; 2028 2028 $keys = array( 'comment_post_ID', 'comment_content', 'comment_author', 'comment_author_email', 'comment_approved', 'comment_karma', 'comment_author_url', 'comment_date', 'comment_date_gmt', 'comment_type', 'comment_parent', 'user_id', 'comment_agent', 'comment_author_IP' ); 2029 2029 $data = wp_array_slice_assoc( $data, $keys ); 2030 2031 /** 2032 * Filters the comment data immediately before it is updated in the database. 2033 * 2034 * Note: data being passed to the filter is already unslashed. 2035 * 2036 * @since 4.7.0 2037 * 2038 * @param array $data The new, processed comment data. 2039 * @param array $comment The old, unslashed comment data. 2040 * @param array $commentarr The new, raw comment data. 2041 */ 2042 $data = apply_filters( 'wp_update_comment_data', $data, $comment, $commentarr ); 2043 2030 2044 $rval = $wpdb->update( $wpdb->comments, $data, compact( 'comment_ID' ) ); 2031 2045 2032 2046 clean_comment_cache( $comment_ID );