Make WordPress Core


Ignore:
Timestamp:
01/23/2018 01:44:25 PM (7 years ago)
Author:
SergeyBiryukov
Message:

Email: Don't send notifications for site or network admin email address change to the default 'admin_email' value.

Props tigertech, MattyRob, seanchayes.
Fixes #42693.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/functions.php

    r42451 r42570  
    59945994 */
    59955995function wp_site_admin_email_change_notification( $old_email, $new_email, $option_name ) {
     5996    $send = true;
     5997
     5998    // Don't send the notification to the default 'admin_email' value.
     5999    if ( 'you@example.com' === $old_email ) {
     6000        $send = false;
     6001    }
     6002
    59966003    /**
    59976004     * Filters whether to send the site admin email change notification email.
     
    60036010     * @param string $new_email The new site admin email address.
    60046011     */
    6005     $send = apply_filters( 'send_site_admin_email_change_email', true, $old_email, $new_email );
     6012    $send = apply_filters( 'send_site_admin_email_change_email', $send, $old_email, $new_email );
    60066013
    60076014    if ( ! $send ) {
Note: See TracChangeset for help on using the changeset viewer.