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
This commit is contained in:
Andrew Nacin 2013-11-15 22:29:09 +00:00
parent 791e807f08
commit c03d9d3f01
1 changed files with 2 additions and 11 deletions

View File

@ -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;