Administration: Add `doing_wp_cron` to `wp_removable_query_args()`.
It's a single-use URL parameter that does not need to be passed to canonical URLs in the admin. Props dlh. Fixes #49017. Built from https://develop.svn.wordpress.org/trunk@47002 git-svn-id: http://core.svn.wordpress.org/trunk@46802 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
7b70f584a7
commit
27d9bac051
|
@ -1162,6 +1162,7 @@ function wp_removable_query_args() {
|
||||||
'deactivate',
|
'deactivate',
|
||||||
'deleted',
|
'deleted',
|
||||||
'disabled',
|
'disabled',
|
||||||
|
'doing_wp_cron',
|
||||||
'enabled',
|
'enabled',
|
||||||
'error',
|
'error',
|
||||||
'hotkeys_highlight_first',
|
'hotkeys_highlight_first',
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '5.4-alpha-47001';
|
$wp_version = '5.4-alpha-47002';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
|
Loading…
Reference in New Issue