Ticket #23887: 23887.patch
File 23887.patch, 816 bytes (added by , 12 years ago) |
---|
-
wp-includes/post.php
2656 2656 } 2657 2657 2658 2658 $maybe_empty = ! $post_content && ! $post_title && ! $post_excerpt && post_type_supports( $post_type, 'editor' ) 2659 && post_type_supports( $post_type, 'title' ) && post_type_supports( $post_type, 'excerpt' ); 2659 && post_type_supports( $post_type, 'title' ) && post_type_supports( $post_type, 'excerpt' ) 2660 && ! in_array( get_post_format( $post_ID ), array( 'audio', 'video', 'quote', 'image', 'link' ) ); 2661 2660 2662 if ( apply_filters( 'wp_insert_post_empty_content', $maybe_empty, $postarr ) ) { 2661 2663 if ( $wp_error ) 2662 2664 return new WP_Error( 'empty_content', __( 'Content, title, and excerpt are empty.' ) );