[wp-trac] [WordPress Trac] #34400: Problem on Recovery E-mail

WordPress Trac noreply at wordpress.org
Thu Oct 22 18:24:30 UTC 2015


#34400: Problem on Recovery E-mail
------------------------------------+-----------------------------
 Reporter:  mcnardelli              |      Owner:
     Type:  enhancement             |     Status:  new
 Priority:  normal                  |  Milestone:  Awaiting Review
Component:  Login and Registration  |    Version:  4.3.1
 Severity:  normal                  |   Keywords:
  Focuses:  administration          |
------------------------------------+-----------------------------
 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.

--
Ticket URL: <https://core.trac.wordpress.org/ticket/34400>
WordPress Trac <https://core.trac.wordpress.org/>
WordPress publishing platform


More information about the wp-trac mailing list