From 929a2cd6cd746c24f893d9c7af592a409fc6cee6 Mon Sep 17 00:00:00 2001 From: markjaquith Date: Thu, 10 Dec 2009 23:11:54 +0000 Subject: [PATCH] Reverting [12361] due to logic issue. see #10715 git-svn-id: http://svn.automattic.com/wordpress/trunk@12370 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/press-this.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/wp-admin/press-this.php b/wp-admin/press-this.php index 34d5909f1..f32d35a89 100644 --- a/wp-admin/press-this.php +++ b/wp-admin/press-this.php @@ -43,9 +43,9 @@ function press_it() { // define some basic variables $quick['post_status'] = 'draft'; // set as draft first $quick['post_category'] = isset($_POST['post_category']) ? $_POST['post_category'] : null; - $quick['tax_input'] = isset($_POST['tax_input']) ? $_POST['tax_input'] : null; - $quick['post_title'] = ( trim($_POST['title']) != '' ) ? $_POST['title'] : ' '; - $quick['post_content'] = isset($_POST['post_content']) ? $_POST['post_content'] : ''; + $quick['tax_input'] = isset($_POST['tax_input']) ? $_POST['tax_input'] : ''; + $quick['post_title'] = isset($_POST['title']) ? $_POST['title'] : ''; + $quick['post_content'] = ''; // insert the post with nothing in it, to get an ID $post_ID = wp_insert_post($quick, true); @@ -68,12 +68,12 @@ function press_it() { $quick['post_content'] = $content; // error handling for $post if ( is_wp_error($post_ID)) { - wp_delete_post($post_ID); wp_die($id); + wp_delete_post($post_ID); // error handling for media_sideload } elseif ( is_wp_error($upload)) { - wp_delete_post($post_ID); wp_die($upload); + wp_delete_post($post_ID); } else { $quick['ID'] = $post_ID; wp_update_post($quick);