Changeset 41166
- Timestamp:
- 07/27/2017 02:56:46 AM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/user.php
r41165 r41166 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. … … 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 … … 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. … … 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'] );
Note: See TracChangeset
for help on using the changeset viewer.