From 27d9bac0519e10fe85bc9bc78ad46d7ef327c4b4 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Sat, 21 Dec 2019 16:14:04 +0000 Subject: [PATCH] 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 --- wp-includes/functions.php | 1 + wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/wp-includes/functions.php b/wp-includes/functions.php index 7bb1c59632..9c6d60de0e 100644 --- a/wp-includes/functions.php +++ b/wp-includes/functions.php @@ -1162,6 +1162,7 @@ function wp_removable_query_args() { 'deactivate', 'deleted', 'disabled', + 'doing_wp_cron', 'enabled', 'error', 'hotkeys_highlight_first', diff --git a/wp-includes/version.php b/wp-includes/version.php index 5917694c24..ce11622c28 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @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.