Changeset 31403 for trunk/src/wp-admin/ms-delete-site.php
- Timestamp:
- 02/10/2015 07:46:50 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/ms-delete-site.php
r27801 r31403 27 27 28 28 $blog = get_blog_details(); 29 $user = wp_get_current_user(); 29 30 30 31 $title = __( 'Delete Site' ); … … 43 44 $url_delete = esc_url( admin_url( 'ms-delete-site.php?h=' . $hash ) ); 44 45 45 $content = __( "Dear User, 46 $content = __( "Howdy ###USERNAME###, 47 46 48 You recently clicked the 'Delete Site' link on your site and filled in a 47 49 form on that page. 50 48 51 If you really want to delete your site, click the link below. You will not 49 52 be asked to confirm again so only click this link if you are absolutely certain: … … 66 69 $content = apply_filters( 'delete_site_email_content', $content ); 67 70 71 $content = str_replace( '###USERNAME###', $user->user_login, $content ); 68 72 $content = str_replace( '###URL_DELETE###', $url_delete, $content ); 69 73 $content = str_replace( '###SITE_NAME###', $current_site->site_name, $content );
Note: See TracChangeset
for help on using the changeset viewer.