Changeset 45137 for trunk/src/wp-includes/user.php
- Timestamp:
- 04/08/2019 06:16:41 AM (7 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/user.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/user.php
r45039 r45137 1971 1971 $pass_change_email = array( 1972 1972 'to' => $user['user_email'], 1973 /* translators: User password change notification email subject. %s: Site name */1974 'subject' => __( '[%s] Notice of Password Change' ),1973 /* translators: Password change notification email subject. %s: Site name */ 1974 'subject' => __( '[%s] Password Changed' ), 1975 1975 'message' => $pass_change_text, 1976 1976 'headers' => '', … … 2028 2028 $email_change_email = array( 2029 2029 'to' => $user['user_email'], 2030 /* translators: User email change notification email subject. %s: Site name */2031 'subject' => __( '[%s] Notice of Email Change' ),2030 /* translators: Email change notification email subject. %s: Site name */ 2031 'subject' => __( '[%s] Email Changed' ), 2032 2032 'message' => $email_change_text, 2033 2033 'headers' => '', … … 2810 2810 $content = str_replace( '###SITEURL###', home_url(), $content ); 2811 2811 2812 wp_mail( $_POST['email'], sprintf( __( '[%s] New Email Address' ), $sitename ), $content ); 2812 /* translators: New email address notification email subject. %s: Site name */ 2813 wp_mail( $_POST['email'], sprintf( __( '[%s] Email Change Request' ), $sitename ), $content ); 2813 2814 2814 2815 $_POST['email'] = $current_user->user_email; … … 3169 3170 3170 3171 $subject = sprintf( 3171 /* translators: %s: Site name. */3172 /* translators: Erasure request fulfilled notification email subject. %s: Site name. */ 3172 3173 __( '[%s] Erasure Request Fulfilled' ), 3173 3174 $email_data['sitename']
Note: See TracChangeset
for help on using the changeset viewer.