diff -r 346c88efed21 -r 5e2f62d02dcd wp/wp-admin/ms-delete-site.php --- a/wp/wp-admin/ms-delete-site.php Mon Jun 08 16:11:51 2015 +0000 +++ b/wp/wp-admin/ms-delete-site.php Tue Jun 09 03:35:32 2015 +0200 @@ -12,8 +12,7 @@ if ( !is_multisite() ) wp_die( __( 'Multisite support is not enabled.' ) ); -// @todo Create a delete blog cap. -if ( ! current_user_can( 'manage_options' ) ) +if ( ! current_user_can( 'delete_site' ) ) wp_die(__( 'You do not have sufficient permissions to delete this site.')); if ( isset( $_GET['h'] ) && $_GET['h'] != '' && get_option( 'delete_blog_hash' ) != false ) { @@ -26,13 +25,13 @@ } $blog = get_blog_details(); +$user = wp_get_current_user(); $title = __( 'Delete Site' ); $parent_file = 'tools.php'; require_once( ABSPATH . 'wp-admin/admin-header.php' ); echo '
'; -screen_icon(); echo '

' . esc_html( $title ) . '

'; if ( isset( $_POST['action'] ) && $_POST['action'] == 'deleteblog' && isset( $_POST['confirmdelete'] ) && $_POST['confirmdelete'] == '1' ) { @@ -43,9 +42,11 @@ $url_delete = esc_url( admin_url( 'ms-delete-site.php?h=' . $hash ) ); - $content = __( "Dear User, + $content = __( "Howdy ###USERNAME###, + You recently clicked the 'Delete Site' link on your site and filled in a form on that page. + If you really want to delete your site, click the link below. You will not be asked to confirm again so only click this link if you are absolutely certain: ###URL_DELETE### @@ -66,10 +67,11 @@ */ $content = apply_filters( 'delete_site_email_content', $content ); + $content = str_replace( '###USERNAME###', $user->user_login, $content ); $content = str_replace( '###URL_DELETE###', $url_delete, $content ); $content = str_replace( '###SITE_NAME###', $current_site->site_name, $content ); - wp_mail( get_option( 'admin_email' ), "[ " . get_option( 'blogname' ) . " ] ".__( 'Delete My Site' ), $content ); + wp_mail( get_option( 'admin_email' ), "[ " . wp_specialchars_decode( get_option( 'blogname' ) ) . " ] ".__( 'Delete My Site' ), $content ); ?>