Add autosave_generate_nonces action. Props prettyboymp. fixes #10634

git-svn-id: https://develop.svn.wordpress.org/trunk@11851 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren 2009-08-20 16:57:11 +00:00
parent 7a83a96658
commit 9c297a84cb
1 changed files with 5 additions and 6 deletions

View File

@ -957,15 +957,14 @@ case 'autosave' : // The name of this action is hardcoded in edit_post()
case 'autosave-generate-nonces' :
check_ajax_referer( 'autosave', 'autosavenonce' );
$ID = (int) $_POST['post_ID'];
if($_POST['post_type'] == 'post') {
if(current_user_can('edit_post', $ID))
if ( $_POST['post_type'] == 'post' ) {
if ( current_user_can('edit_post', $ID) )
die(wp_create_nonce('update-post_' . $ID));
}
if($_POST['post_type'] == 'page') {
if(current_user_can('edit_page', $ID)) {
} elseif ( $_POST['post_type'] == 'page' ) {
if ( current_user_can('edit_page', $ID) )
die(wp_create_nonce('update-page_' . $ID));
}
}
do_action('autosave_generate_nonces');
die('0');
break;
case 'closed-postboxes' :