diff --git a/wp-includes/post.php b/wp-includes/post.php index 63bfd1959c..61e4bfe112 100644 --- a/wp-includes/post.php +++ b/wp-includes/post.php @@ -418,7 +418,7 @@ function get_post_custom_values( $key = '', $post_id = 0 ) { function sanitize_post($post, $context = 'display') { // TODO: Use array keys instead of hard coded list - $fields = array('post_author', 'post_date', 'post_date_gmt', 'post_content', 'post_content_filtered', 'post_title', 'post_excerpt', 'post_status', 'post_type', 'comment_status', 'ping_status', 'post_password', 'post_name', 'to_ping', 'pinged', 'post_date', 'post_date_gmt', 'post_parent', 'menu_order', 'post_mime_type'); + $fields = array('post_author', 'post_date', 'post_date_gmt', 'post_content', 'post_content_filtered', 'post_title', 'post_excerpt', 'post_status', 'post_type', 'comment_status', 'ping_status', 'post_password', 'post_name', 'to_ping', 'pinged', 'post_date', 'post_date_gmt', 'post_parent', 'menu_order', 'post_mime_type', 'post_category'); $do_object = false; if ( is_object($post) )