Make WordPress Core

Opened 11 years ago

Closed 11 years ago

Last modified 11 years ago

#34056 closed defect (bug) (duplicate)

User registration email with link to generate password - link error.

Reported by: ibrythill Owned by:
Priority: normal Milestone:
Component: Login and Registration Version: 4.3.1
Severity: normal Keywords:
Cc: Focuses:

Description

Link to generate password is surrounded by "<..>". In most Poland email hosting, the last ">" is detected as part of the link. When follow this link, the user name is not being recognised and password isn't generated.

To fix that, in pluggable.php change line 1741:

$message .= '<' . network_site_url("wp-login.php?action=rp&key=$key&login=" . rawurlencode($user->user_login), 'login') . ">\r\n\r\n";

to this:

$message .= network_site_url("wp-login.php?action=rp&key=$key&login=" . rawurlencode($user->user_login), 'login') . "\r\n\r\n";

Change History (3)

#1 @timersys
11 years ago

Realated to #23578

#2 @ibrythill
11 years ago

  • Resolutionduplicate
  • Status newclosed

Duplicate of #23578.

#3 @chriscct7
11 years ago

  • Milestone Awaiting Review
Note: See TracTickets for help on using tickets.