Changeset 60129
- Timestamp:
- 04/04/2025 04:34:25 PM (3 months ago)
- Location:
- trunk/src/wp-includes
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/functions.php
r60128 r60129 8091 8091 $send = true; 8092 8092 8093 // Don't send the notification to the default 'admin_email' value .8094 if ( 'you@example.com' === $old_email ) {8093 // Don't send the notification to the default 'admin_email' value or an empty value. 8094 if ( 'you@example.com' === $old_email || empty( $old_email ) ) { 8095 8095 $send = false; 8096 8096 } -
trunk/src/wp-includes/ms-functions.php
r59754 r60129 2870 2870 $send = true; 2871 2871 2872 // Don't send the notification to the default 'admin_email' value .2873 if ( 'you@example.com' === $old_email ) {2872 // Don't send the notification to the default 'admin_email' value or an empty value. 2873 if ( 'you@example.com' === $old_email || empty( $old_email ) ) { 2874 2874 $send = false; 2875 2875 }
Note: See TracChangeset
for help on using the changeset viewer.