Changes between Initial Version and Version 2 of Ticket #48017
- Timestamp:
- 09/11/2019 07:04:08 PM (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #48017
-
Property
Status
changed from
new
toclosed
-
Property
Milestone
changed from
Awaiting Review
to - Property Keywords needs-patch removed
-
Property
Resolution
changed from
to
duplicate
-
Property
Status
changed from
-
Ticket #48017 – Description
initial v2 1 1 We found an instance, whether it was new or after the update to 5.2.3, that when a user clicks the Get New Password button in the lostpassword screen, that the user is redirected to https://wp-login.php/?checkemail=confirm. The email still comes in to the user, but is navigated away from the site. As a note, this is on a windows hosting (just because it makes it interesting sometimes). I modified line 568 of wp-login.php to 2 {{{ 2 3 $redirect_to = ! empty( $_REQUEST['redirect_to'] ) ? $_REQUEST['redirect_to'] : site_url() . '/wp-login.php?checkemail=confirm'; 4 }}} 3 5 I simply included the site_url() function and a forward slash.