Ticket #46855: 46855.patch
| File 46855.patch, 796 bytes (added by , 7 years ago) |
|---|
-
src/wp-admin/ms-delete-site.php
78 78 $content = str_replace( '###URL_DELETE###', $url_delete, $content ); 79 79 $content = str_replace( '###SITE_NAME###', get_network()->site_name, $content ); 80 80 81 wp_mail( get_option( 'admin_email' ), '[ ' . wp_specialchars_decode( get_option( 'blogname' ) ) . ' ] ' . __( 'Delete My Site' ), $content ); 81 /* translators: 1: site name, 2: email subject */ 82 wp_mail( get_option( 'admin_email' ), sprintf( '[%1$s] %2$s', wp_specialchars_decode( get_option( 'blogname' ) ), __( 'Delete My Site' ) ), $content ); 82 83 83 84 if ( $switched_locale ) { 84 85 restore_previous_locale();