X-Git-Url: https://scripts.mit.edu/gitweb/autoinstalls/wordpress.git/blobdiff_plain/80b7979fccf09a75af3f4c111fa27060ae6dbf85..2329f698283944696a7076258cf816545970bb47:/wp-admin/ms-delete-site.php diff --git a/wp-admin/ms-delete-site.php b/wp-admin/ms-delete-site.php index 95f0aa09..00143089 100644 --- a/wp-admin/ms-delete-site.php +++ b/wp-admin/ms-delete-site.php @@ -7,7 +7,7 @@ * @since 3.0.0 */ -require_once( './admin.php' ); +require_once( dirname( __FILE__ ) . '/admin.php' ); if ( !is_multisite() ) wp_die( __( 'Multisite support is not enabled.' ) ); @@ -25,12 +25,13 @@ if ( isset( $_GET['h'] ) && $_GET['h'] != '' && get_option( 'delete_blog_hash' ) } } +$blog = get_blog_details(); + $title = __( 'Delete Site' ); $parent_file = 'tools.php'; -require_once( './admin-header.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' ) { @@ -41,7 +42,7 @@ if ( isset( $_POST['action'] ) && $_POST['action'] == 'deleteblog' && isset( $_P $url_delete = esc_url( admin_url( 'ms-delete-site.php?h=' . $hash ) ); - $content = apply_filters( 'delete_site_email_content', __( "Dear User, + $content = __( "Dear User, 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 @@ -54,12 +55,20 @@ are gone forever.) Thanks for using the site, Webmaster -###SITE_NAME###" ) ); +###SITE_NAME###" ); + /** + * Filter the email content sent when a site in a Multisite network is deleted. + * + * @since 3.0.0 + * + * @param string $content The email content that will be sent to the user who deleted a site in a Multisite network. + */ + $content = apply_filters( 'delete_site_email_content', $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 ); ?>

@@ -72,11 +81,11 @@ Webmaster
-

+

'; -include( './admin-footer.php' ); +include( ABSPATH . 'wp-admin/admin-footer.php' );