Changes between Initial Version and Version 3 of Ticket #23874
- Timestamp:
- 03/29/2013 07:23:45 PM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #23874
- Property Keywords needs-patch removed
- Property Resolution → duplicate
- Property Status new → closed
- Property Milestone Awaiting Review
-
Ticket #23874 – Description
initial v3 4 4 5 5 wp-includes/general-template.php: 6 6 {{{ 7 7 function wp_lostpassword_url( $redirect = '' ) { 8 8 $args = array( 'action' => 'lostpassword' ); … … 14 14 return apply_filters( 'lostpassword_url', $lostpassword_url, $redirect ); 15 15 } 16 16 }}} 17 17 Should be 18 18 {{{ 19 19 function wp_lostpassword_url( $redirect = '' ) { 20 20 $args = array( 'action' => 'lostpassword' ); … … 26 26 return apply_filters( 'lostpassword_url', $lostpassword_url, $redirect ); 27 27 } 28 28 }}} 29 29 Also WordPress is generating the incorrect email in wp-login.php 30 30 {{{ 31 31 $message = __('Someone requested that the password be reset for the following account:') . "\r\n\r\n"; 32 32 $message .= network_home_url( '/' ) . "\r\n\r\n"; … … 35 35 $message .= __('To reset your password, visit the following address:') . "\r\n\r\n"; 36 36 $message .= '<' . network_site_url("wp-login.php?action=rp&key=$key&login=" . rawurlencode($user_login), 'login') . ">\r\n"; 37 37 }}} 38 38 should be 39 39 {{{ 40 40 $message = __('Someone requested that the password be reset for the following account:') . "\r\n\r\n"; 41 41 $message .= home_url( '/' ) . "\r\n\r\n"; … … 44 44 $message .= __('To reset your password, visit the following address:') . "\r\n\r\n"; 45 45 $message .= '<' . site_url("wp-login.php?action=rp&key=$key&login=" . rawurlencode($user_login), 'login') . ">\r\n"; 46 }}}
![(please configure the [header_logo] section in trac.ini)](/chrome/site/your_project_logo.png)