Changeset 60153 for trunk/src/wp-includes/ms-functions.php
- Timestamp:
- 04/13/2025 04:46:50 PM (10 months ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/ms-functions.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
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.