Changeset 48601 for trunk/src/wp-includes/ms-functions.php
- Timestamp:
- 07/24/2020 05:38:27 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/ms-functions.php
r48511 r48601 953 953 954 954 if ( '' === $admin_email ) { 955 $admin_email = 'support@' . $_SERVER['SERVER_NAME'];955 $admin_email = 'support@' . wp_parse_url( network_home_url(), PHP_URL_HOST ); 956 956 } 957 957 … … 1080 1080 1081 1081 if ( '' === $admin_email ) { 1082 $admin_email = 'support@' . $_SERVER['SERVER_NAME'];1082 $admin_email = 'support@' . wp_parse_url( network_home_url(), PHP_URL_HOST ); 1083 1083 } 1084 1084 … … 1664 1664 1665 1665 if ( '' === $admin_email ) { 1666 $admin_email = 'support@' . $_SERVER['SERVER_NAME'];1666 $admin_email = 'support@' . wp_parse_url( network_home_url(), PHP_URL_HOST ); 1667 1667 } 1668 1668 … … 1756 1756 1757 1757 if ( '' === $admin_email ) { 1758 $admin_email = 'support@' . $_SERVER['SERVER_NAME'];1758 $admin_email = 'support@' . wp_parse_url( network_home_url(), PHP_URL_HOST ); 1759 1759 } 1760 1760
Note: See TracChangeset
for help on using the changeset viewer.