Changes between Initial Version and Version 3 of Ticket #48148
- Timestamp:
- 09/26/2019 12:32:52 PM (7 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #48148
-
Property
Status
changed from
newtoclosed - Property Keywords needs-patch removed
-
Property
Resolution
changed from
toduplicate -
Property
Milestone
changed from
Awaiting Reviewto
-
Property
Status
changed from
-
Ticket #48148 – Description
initial v3 2 2 Cause: There is no "/" before "wp-login.php?..." and the user is redirected to "http://wp-login.php/?loggedout=true" 3 3 (row 546 wp-login.php) 4 4 {{{ 5 5 if ( ! empty( $_REQUEST['redirect_to'] ) ) { 6 6 $redirect_to = $requested_redirect_to = $_REQUEST['redirect_to']; … … 9 9 $requested_redirect_to = ''; 10 10 } 11 }}}