From ec40f6b186a4b893ac63f436efefbcdbae3de328 Mon Sep 17 00:00:00 2001 From: Andrew Nacin Date: Wed, 30 Jun 2010 22:05:27 +0000 Subject: [PATCH] Curses on PHP 5.0.5. see #14160 for trunk. git-svn-id: https://develop.svn.wordpress.org/trunk@15358 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-admin/includes/post.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/wp-admin/includes/post.php b/wp-admin/includes/post.php index c679193b02..9562ce31a3 100644 --- a/wp-admin/includes/post.php +++ b/wp-admin/includes/post.php @@ -376,7 +376,8 @@ function get_default_post_to_edit( $post_type = 'post', $create_in_db = false ) $old_posts = $wpdb->get_col( "SELECT ID FROM $wpdb->posts WHERE post_status = 'auto-draft' AND DATE_SUB( NOW(), INTERVAL 7 DAY ) > post_date" ); foreach ( (array) $old_posts as $delete ) wp_delete_post( $delete, true ); // Force delete - $post = get_post( wp_insert_post( array( 'post_title' => __( 'Auto Draft' ), 'post_type' => $post_type, 'post_status' => 'auto-draft' ) ) ); + $post_id = wp_insert_post( array( 'post_title' => __( 'Auto Draft' ), 'post_type' => $post_type, 'post_status' => 'auto-draft' ) ); + $post = get_post( $post_id ); } else { $post->ID = 0; $post->post_author = '';