Changeset 53063 for trunk/src/wp-admin/includes/misc.php
- Timestamp:
- 04/04/2022 08:19:12 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/misc.php
r53060 r53063 1473 1473 $content = str_replace( '###SITEURL###', home_url(), $content ); 1474 1474 1475 if ( '' !== get_option( 'blogname' ) ) { 1476 $site_title = wp_specialchars_decode( get_option( 'blogname' ), ENT_QUOTES ); 1477 } else { 1478 $site_title = parse_url( home_url(), PHP_URL_HOST ); 1479 } 1480 1475 1481 wp_mail( 1476 1482 $value, … … 1478 1484 /* translators: New admin email address notification email subject. %s: Site title. */ 1479 1485 __( '[%s] New Admin Email Address' ), 1480 wp_specialchars_decode( get_option( 'blogname' ), ENT_QUOTES )1486 $site_title 1481 1487 ), 1482 1488 $content
Note: See TracChangeset
for help on using the changeset viewer.