Changeset 25505 for trunk/src/wp-admin/includes/post.php
- Timestamp:
- 09/19/2013 05:46:25 PM (12 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-admin/includes/post.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/post.php
r25316 r25505 325 325 $post_IDs = array_map( 'intval', (array) $post_data['post'] ); 326 326 327 $reset = array( 'post_author', 'post_status', 'post_password', 'post_parent', 'page_template', 'comment_status', 'ping_status', 'keep_private', 'tax_input', 'post_category', 'sticky' ); 327 $reset = array( 328 'post_author', 'post_status', 'post_password', 329 'post_parent', 'page_template', 'comment_status', 330 'ping_status', 'keep_private', 'tax_input', 331 'post_category', 'sticky', 'post_format', 332 ); 333 328 334 foreach ( $reset as $field ) { 329 335 if ( isset($post_data[$field]) && ( '' == $post_data[$field] || -1 == $post_data[$field] ) ) … … 419 425 unstick_post( $post_ID ); 420 426 } 427 428 if ( isset( $post_data['post_format'] ) ) 429 set_post_format( $post_ID, $post_data['post_format'] ); 421 430 } 422 431
Note: See TracChangeset
for help on using the changeset viewer.