Make WordPress Core

Ticket #23887: 23887.2.patch

File 23887.2.patch, 784 bytes (added by SergeyBiryukov, 12 years ago)
  • wp-includes/post.php

     
    26552655                $previous_status = 'new';
    26562656        }
    26572657
    2658         if ( empty( $post_format ) )
    2659                 $post_format = '';
    2660 
    26612658        $maybe_empty = ! $post_content && ! $post_title && ! $post_excerpt && post_type_supports( $post_type, 'editor' )
    26622659                && post_type_supports( $post_type, 'title' ) && post_type_supports( $post_type, 'excerpt' )
    2663                 && ! in_array( $post_format, array( 'audio', 'video', 'quote', 'image' ) );
     2660                && ! in_array( get_post_format( $post_ID ), array( 'audio', 'video', 'quote', 'image' ) );
    26642661
    26652662        if ( apply_filters( 'wp_insert_post_empty_content', $maybe_empty, $postarr ) ) {
    26662663                if ( $wp_error )