Skip to content

Commit

Permalink
Add a nonce.
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.automattic.com/wordpress/branches/3.1@18016 1a063a9b-81f0-0310-95a4-ce76da25c4cd
  • Loading branch information
ryan committed May 24, 2011
1 parent aed9098 commit 17ba8a4
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion wp-admin/ms-delete-site.php
Expand Up @@ -34,6 +34,8 @@
echo '<h2>' . esc_html( $title ) . '</h2>';

if ( isset( $_POST['action'] ) && $_POST['action'] == 'deleteblog' && isset( $_POST['confirmdelete'] ) && $_POST['confirmdelete'] == '1' ) {
check_admin_referer( 'delete-blog' );

$hash = wp_generate_password( 20, false );
update_option( 'delete_blog_hash', $hash );

Expand Down Expand Up @@ -68,11 +70,12 @@
<p><?php _e( 'Remember, once deleted your site cannot be restored.' ) ?></p>

<form method="post" name="deletedirect">
<?php wp_nonce_field( 'delete-blog' ) ?>
<input type="hidden" name="action" value="deleteblog" />
<p><input id="confirmdelete" type="checkbox" name="confirmdelete" value="1" /> <label for="confirmdelete"><strong><?php printf( __( "I'm sure I want to permanently disable my site, and I am aware I can never get it back or use %s again." ), is_subdomain_install() ? $current_blog->domain : $current_blog->domain . $current_blog->path ); ?></strong></label></p>
<?php submit_button( __( 'Delete My Site Permanently' ) ); ?>
</form>
<?php
<?php
}
echo '</div>';

Expand Down

0 comments on commit 17ba8a4

Please sign in to comment.