From 9e397bfb120312656b5d0ea739cd6293029d20fe Mon Sep 17 00:00:00 2001 From: ryan Date: Tue, 1 Nov 2011 21:15:18 +0000 Subject: [PATCH] No need to setup current screen in wp-fullscreen-save-post handler. see #18785 git-svn-id: http://svn.automattic.com/wordpress/trunk@19106 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/admin-ajax.php | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/wp-admin/admin-ajax.php b/wp-admin/admin-ajax.php index 0fbf0d52f..0ea02a98a 100644 --- a/wp-admin/admin-ajax.php +++ b/wp-admin/admin-ajax.php @@ -1518,19 +1518,13 @@ case 'wp-fullscreen-save-post' : $post = get_post($post_id); if ( $post ) { $post_type_object = get_post_type_object($post->post_type); - if ( $post_type_object ) { + if ( $post_type_object ) $post_type = $post->post_type; - $current_screen->post_type = $post->post_type; - $current_screen->id = $current_screen->post_type; - } } } elseif ( isset($_POST['post_type']) ) { $post_type_object = get_post_type_object($_POST['post_type']); - if ( $post_type_object ) { + if ( $post_type_object ) $post_type = $post_type_object->name; - $current_screen->post_type = $post_type; - $current_screen->id = $current_screen->post_type; - } } check_ajax_referer('update-' . $post_type . '_' . $post_id, '_wpnonce');