Make WordPress Core

Changes between Version 1 and Version 2 of Ticket #44047, comment 1


Ignore:
Timestamp:
05/11/2018 02:02:54 PM (7 years ago)
Author:
subrataemfluence
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #44047, comment 1

    v1 v2  
    11I confirm that I could reproduce the issue by following the steps.
     2
    23However
    3 "Add any e-mail without refreshing the page",- if I do it even after refreshing the page the message is still coming.
     4
     5''"Add any e-mail without refreshing the page..."'',
     6
     7if I do it even after refreshing the page the message is still coming.
     8
     9Not sure if I am right, but when I Remove request, the process page URL is like this:
     10
     11{{{
     12/wp-admin/tools.php?page=export_personal_data&action=delete&request_id%5B0%5D=136&_wpnonce=cb4afd7f30
     13
     14}}}
     15
     16and after removal, the page stays only there.
     17
     18After the removal is done the value for _w_http_referrer is
     19
     20{{{
     21/wp-admin/tools.php?page=export_personal_data&action=delete&request_id%5B0%5D=136&_wpnonce=cb4afd7f30
     22
     23}}}
     24
     25which is reported expired since we have already removed that request.
     26
     27But when I load the page by clicking Tools > Export personal data link, the referrer is `/wp-admin/tools.php?page=export_personal_data`.
     28
     29To my understanding after deleting a request the page should redirect back to `/wp-admin/tools.php?page=export_personal_data`, so that no Expired Link is reported.
     30
     31I may be wrong!