Changeset 49255
- Timestamp:
- 10/20/2020 08:01:04 PM (4 years ago)
- Location:
- trunk/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-privacy-policy-content.php
r48836 r49255 585 585 } 586 586 587 /* translators: Default privacy policy text. */ 588 $strings[] = '<p>' . $suggested_text . __( 'If you request a password reset, your IP address will be included in the reset email.' ) . '</p>'; 589 587 590 /* translators: Default privacy policy heading. */ 588 591 $strings[] = '<h2>' . __( 'How long we retain your data' ) . '</h2>'; -
trunk/src/wp-login.php
r49215 r49255 433 433 /* translators: %s: User login. */ 434 434 $message .= sprintf( __( 'Username: %s' ), $user_login ) . "\r\n\r\n"; 435 $message .= __( 'If this was a mistake, justignore this email and nothing will happen.' ) . "\r\n\r\n";435 $message .= __( 'If this was a mistake, ignore this email and nothing will happen.' ) . "\r\n\r\n"; 436 436 $message .= __( 'To reset your password, visit the following address:' ) . "\r\n\r\n"; 437 $message .= network_site_url( "wp-login.php?action=rp&key=$key&login=" . rawurlencode( $user_login ), 'login' ) . "\r\n"; 437 $message .= network_site_url( "wp-login.php?action=rp&key=$key&login=" . rawurlencode( $user_login ), 'login' ) . "\r\n\r\n"; 438 439 $requestor_ip = $_SERVER['REMOTE_ADDR']; 440 if ( $requestor_ip ) { 441 $message .= sprintf( 442 /* translators: %s: IP address of password reset requestor. */ 443 __( 'This password reset request originated from the IP address %s.' ), 444 $requestor_ip 445 ) . "\r\n"; 446 } 438 447 439 448 /* translators: Password reset notification email subject. %s: Site title. */
Note: See TracChangeset
for help on using the changeset viewer.