Changes between Initial Version and Version 1 of Ticket #63480
- Timestamp:
- 05/25/2025 03:01:43 PM (8 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #63480
- Property Focuses ui administration added
-
Property
Component
changed from
AdministrationtoPlugins
-
Ticket #63480 – Description
initial v1 38 38 In `wp-admin/plugins.php` (WordPress 6.8.1), the following code immediately strips query args used to communicate plugin status: 39 39 40 ```php 40 {{{ 41 41 $query_args_to_remove = array( 42 42 'error', 'deleted', 'activate', 'activate-multi', … … 44 44 ); 45 45 $_SERVER['REQUEST_URI'] = remove_query_arg($query_args_to_remove, $_SERVER['REQUEST_URI']); 46 ``` 46 }}} 47 47 48 48 If: