Ticket #25229: ms-delete-site.php1.diff
File ms-delete-site.php1.diff, 1.1 KB (added by , 11 years ago) |
---|
-
ms-delete-site.php
43 43 44 44 $url_delete = esc_url( admin_url( 'ms-delete-site.php?h=' . $hash ) ); 45 45 46 $ content = apply_filters( 'delete_site_email_content',__( "Dear User,46 $email_content = __( "Dear User, 47 47 You recently clicked the 'Delete Site' link on your site and filled in a 48 48 form on that page. 49 49 If you really want to delete your site, click the link below. You will not … … 57 57 Thanks for using the site, 58 58 Webmaster 59 59 ###SITE_NAME###" ) ); 60 /** 61 * Filter the email content sent when a site in a Multisite network is deleted. 62 * 63 * @since Unknown 64 * 65 * @param string $email_content The email content that will be sent to the user who deleted a site in a Multisite network. 66 */ 67 $content = apply_filters( 'delete_site_email_content', $email_content ); 60 68 61 69 $content = str_replace( '###URL_DELETE###', $url_delete, $content ); 62 70 $content = str_replace( '###SITE_NAME###', $current_site->site_name, $content );