Ticket #5325: do_nothing_faster.diff
| File do_nothing_faster.diff, 0.6 kB (added by Quandary, 9 months ago) |
|---|
-
wp-includes/post.php
old new 428 428 } 429 429 430 430 function sanitize_post($post, $context = 'display') { 431 432 if ( 'raw' == $context ) 433 return $post; 434 431 435 // TODO: Use array keys instead of hard coded list 432 436 $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'); 433 437
