Opened 9 years ago
Closed 9 years ago
#34400 closed enhancement (duplicate)
Problem on Recovery E-mail
Reported by: | mcnardelli | Owned by: | |
---|---|---|---|
Milestone: | Priority: | normal | |
Severity: | normal | Version: | 4.3.1 |
Component: | Login and Registration | Keywords: | |
Focuses: | administration | Cc: |
Description
Problem: When user want to recovery e-mail, the e-mail is sent, but the link to create a new one no.
Solution: Remove the < > that encapsulates the recovery link on wp-login.php (line374).
Before:
$message .= '<' . network_site_url("wp-login.php?action=rp&key=$key&login=" . rawurlencode($user_login), 'login') . ">\r\n";
After:
$message .= network_site_url("wp-login.php?action=rp&key=$key&login=" . rawurlencode($user_login), 'login') . "\r\n";
Although I think that is not a major issue, the < > on the link is not necessary too.
Change History (1)
Note: See
TracTickets for help on using
tickets.
Hi @mcnardelli, welcome to Trac!
Thanks for the report, we're already tracking this issue in #23578.