Make WordPress Core

Changes between Initial Version and Version 1 of Ticket #63480


Ignore:
Timestamp:
05/25/2025 03:01:43 PM (8 months ago)
Author:
SergeyBiryukov
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #63480

    • Property Focuses ui administration added
    • Property Component changed from Administration to Plugins
  • Ticket #63480 – Description

    initial v1  
    3838In `wp-admin/plugins.php` (WordPress 6.8.1), the following code immediately strips query args used to communicate plugin status:
    3939
    40 ```php
     40{{{
    4141$query_args_to_remove = array(
    4242    'error', 'deleted', 'activate', 'activate-multi',
     
    4444);
    4545$_SERVER['REQUEST_URI'] = remove_query_arg($query_args_to_remove, $_SERVER['REQUEST_URI']);
    46 ```
     46}}}
    4747
    4848If: