Changeset 60153
- Timestamp:
- 04/13/2025 04:46:50 PM (2 weeks ago)
- Location:
- trunk/src/wp-includes
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/functions.php
r60131 r60153 8123 8123 $send = true; 8124 8124 8125 // Don't send the notification to the default 'admin_email' value or an emptyvalue.8126 if ( 'you@example.com' === $old_email || empty( $old_email )) {8125 // Don't send the notification for an empty email address or the default 'admin_email' value. 8126 if ( empty( $old_email ) || 'you@example.com' === $old_email ) { 8127 8127 $send = false; 8128 8128 } -
trunk/src/wp-includes/ms-functions.php
r60147 r60153 2870 2870 $send = true; 2871 2871 2872 // Don't send the notification to the default 'admin_email' value or an emptyvalue.2873 if ( 'you@example.com' === $old_email || empty( $old_email )) {2872 // Don't send the notification for an empty email address or the default 'admin_email' value. 2873 if ( empty( $old_email ) || 'you@example.com' === $old_email ) { 2874 2874 $send = false; 2875 2875 }
Note: See TracChangeset
for help on using the changeset viewer.