diff --git src/wp-includes/user.php src/wp-includes/user.php
index d27bbda392..9190d9ba24 100644
|
|
All at ###SITENAME### |
1899 | 1899 | * The following strings have a special meaning and will get replaced dynamically: |
1900 | 1900 | * - ###USERNAME### The current user's username. |
1901 | 1901 | * - ###ADMIN_EMAIL### The admin email in case this was unexpected. |
1902 | | * - ###EMAIL### The old email. |
| 1902 | * - ###EMAIL### The user's email address. |
1903 | 1903 | * - ###SITENAME### The name of the site. |
1904 | 1904 | * - ###SITEURL### The URL to the site. |
1905 | 1905 | * @type string $headers Headers. Add headers in a newline (\r\n) separated string. |
… |
… |
All at ###SITENAME### |
1920 | 1920 | } |
1921 | 1921 | |
1922 | 1922 | if ( ! empty( $send_email_change_email ) ) { |
1923 | | /* translators: Do not translate USERNAME, ADMIN_EMAIL, EMAIL, SITENAME, SITEURL: those are placeholders. */ |
| 1923 | /* translators: Do not translate USERNAME, ADMIN_EMAIL, NEW_EMAIL, EMAIL, SITENAME, SITEURL: those are placeholders. */ |
1924 | 1924 | $email_change_text = __( 'Hi ###USERNAME###, |
1925 | 1925 | |
1926 | | This notice confirms that your email was changed on ###SITENAME###. |
| 1926 | This notice confirms that your email address on ###SITENAME### was changed to ###NEW_EMAIL###. |
1927 | 1927 | |
1928 | 1928 | If you did not change your email, please contact the Site Administrator at |
1929 | 1929 | ###ADMIN_EMAIL### |
… |
… |
All at ###SITENAME### |
1955 | 1955 | * The following strings have a special meaning and will get replaced dynamically: |
1956 | 1956 | * - ###USERNAME### The current user's username. |
1957 | 1957 | * - ###ADMIN_EMAIL### The admin email in case this was unexpected. |
1958 | | * - ###EMAIL### The old email. |
| 1958 | * - ###NEW_EMAIL### The new email address. |
| 1959 | * - ###EMAIL### The old email address. |
1959 | 1960 | * - ###SITENAME### The name of the site. |
1960 | 1961 | * - ###SITEURL### The URL to the site. |
1961 | 1962 | * @type string $headers Headers. |
… |
… |
All at ###SITENAME### |
1967 | 1968 | |
1968 | 1969 | $email_change_email['message'] = str_replace( '###USERNAME###', $user['user_login'], $email_change_email['message'] ); |
1969 | 1970 | $email_change_email['message'] = str_replace( '###ADMIN_EMAIL###', get_option( 'admin_email' ), $email_change_email['message'] ); |
| 1971 | $email_change_email['message'] = str_replace( '###NEW_EMAIL###', $userdata['user_email'], $email_change_email['message'] ); |
1970 | 1972 | $email_change_email['message'] = str_replace( '###EMAIL###', $user['user_email'], $email_change_email['message'] ); |
1971 | 1973 | $email_change_email['message'] = str_replace( '###SITENAME###', $blog_name, $email_change_email['message'] ); |
1972 | 1974 | $email_change_email['message'] = str_replace( '###SITEURL###', home_url(), $email_change_email['message'] ); |