Changeset 48049 for trunk/src/wp-admin/ms-delete-site.php
- Timestamp:
- 06/15/2020 07:39:32 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/ms-delete-site.php
r47785 r48049 53 53 $switched_locale = switch_to_locale( get_locale() ); 54 54 55 /* translators: Do not translate USERNAME, URL_DELETE, SITE _NAME: those are placeholders. */55 /* translators: Do not translate USERNAME, URL_DELETE, SITENAME, SITEURL: those are placeholders. */ 56 56 $content = __( 57 57 "Howdy ###USERNAME###, … … 69 69 70 70 Thanks for using the site, 71 Webmaster 72 ###SITE _NAME###"71 All at ###SITENAME### 72 ###SITEURL###" 73 73 ); 74 74 /** … … 83 83 $content = str_replace( '###USERNAME###', $user->user_login, $content ); 84 84 $content = str_replace( '###URL_DELETE###', $url_delete, $content ); 85 $content = str_replace( '###SITE_NAME###', get_network()->site_name, $content ); 85 $content = str_replace( '###SITENAME###', get_network()->site_name, $content ); 86 $content = str_replace( '###SITEURL###', network_home_url(), $content ); 86 87 87 88 wp_mail(
Note: See TracChangeset
for help on using the changeset viewer.