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

View File

@ -960,12 +960,11 @@ case 'autosave-generate-nonces' :
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' :