From c03d9d3f016219a3f698d8dd1c64fd2dddc5c7b6 Mon Sep 17 00:00:00 2001 From: Andrew Nacin Date: Fri, 15 Nov 2013 22:29:09 +0000 Subject: [PATCH] Revert these action blocks in wp-admin/post.php to their pre-[26144] state. see #25824. Built from https://develop.svn.wordpress.org/trunk@26231 git-svn-id: http://core.svn.wordpress.org/trunk@26138 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/post.php | 13 ++----------- 1 file changed, 2 insertions(+), 11 deletions(-) diff --git a/wp-admin/post.php b/wp-admin/post.php index c6d4f81da7..e96982b731 100644 --- a/wp-admin/post.php +++ b/wp-admin/post.php @@ -118,18 +118,9 @@ case 'post-quickdraft-save': case 'postajaxpost': case 'post': - // Check nonce and capabilities - $nonce = $_REQUEST['_wpnonce']; - $error_msg = false; - if ( ! wp_verify_nonce( $nonce, 'add-post' ) ) - $error_msg = 'Unable to submit this form, please refresh and try again.'; - - if ( ! current_user_can( 'edit_posts' ) ) - $error_msg = "Oops, you don't have access to add new drafts."; - + check_admin_referer( 'add-' . $post_type ); $post_id = 'postajaxpost' == $action ? edit_post() : write_post(); - - redirect_post($post_id); + redirect_post( $post_id ); exit(); break;