Changeset 60153 for trunk/src/wp-includes/functions.php
- Timestamp:
- 04/13/2025 04:46:50 PM (14 months ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/functions.php (modified) (1 diff)
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 }
Note: See TracChangeset
for help on using the changeset viewer.