]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-admin/post.php
WordPress 4.2.5-scripts
[autoinstalls/wordpress.git] / wp-admin / post.php
index 0c38b5631e074150c872d83a364ca6b4c46eb626..9b9b20f84a0858afdc156a998a75bf26bde21285 100644 (file)
@@ -115,8 +115,9 @@ case 'post-quickdraft-save':
        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.' );
+       if ( ! current_user_can( 'edit_posts' ) ) {
+               exit;
+       }
 
        if ( $error_msg )
                return wp_dashboard_quick_press( $error_msg );
@@ -159,6 +160,7 @@ case 'edit':
                wp_die( __( 'You can’t edit this item because it is in the Trash. Please restore it and try again.' ) );
 
        if ( ! empty( $_GET['get-post-lock'] ) ) {
+               check_admin_referer( 'lock-post_' . $post_id );
                wp_set_post_lock( $post_id );
                wp_redirect( get_edit_post_link( $post_id, 'url' ) );
                exit();