Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
03/29/2020 04:09:52 PM (5 years ago)
Author:
imath
Message:

Send the "email change" confirmation message to the new email

To be consistent with how the email change confirmation message is handled by WordPress, we need to send it to the new email and not to the current email.

Props laudag, espellcaste

Fixes #8138

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/bp-core/bp-core-functions.php

    r12588 r12603  
    31523152
    31533153    // From, subject, content are set automatically.
    3154     $email->set_to( $to );
     3154    if ( 'settings-verify-email-change' === $email_type && isset( $args['tokens']['displayname'] ) ) {
     3155        $email->set_to( $to, $args['tokens']['displayname'] );
     3156    } else {
     3157        $email->set_to( $to );
     3158    }
     3159
    31553160    $email->set_tokens( $args['tokens'] );
    31563161
Note: See TracChangeset for help on using the changeset viewer.