Make WordPress Core

Ticket #46855: 46855.2.patch

File 46855.2.patch, 768 bytes (added by thrijith, 7 years ago)
  • src/wp-admin/ms-delete-site.php

     
    7878        $content = str_replace( '###URL_DELETE###', $url_delete, $content );
    7979        $content = str_replace( '###SITE_NAME###', get_network()->site_name, $content );
    8080
    81         wp_mail( get_option( 'admin_email' ), '[ ' . wp_specialchars_decode( get_option( 'blogname' ) ) . ' ] ' . __( 'Delete My Site' ), $content );
     81        /* translators: %s: site name */
     82        wp_mail( get_option( 'admin_email' ), sprintf( __( '[%s] Delete My Site' ), wp_specialchars_decode( get_option( 'blogname' ) ) ), $content );
    8283
    8384        if ( $switched_locale ) {
    8485                restore_previous_locale();