From 143b5fd080fe46469e6b82fcb7d7927d35a5441b Mon Sep 17 00:00:00 2001 From: desrosj Date: Fri, 4 Oct 2019 14:32:56 +0000 Subject: [PATCH] Networks and Sites: Fix issues processing additional fields displayed for the Sites list table. This prevents a `The link you followed has expired.` error when using a filter and now uses `$_POST` instead of `$_GET` to capture all form values. Props pbiron. Fixes #45954. Built from https://develop.svn.wordpress.org/trunk@46384 git-svn-id: http://core.svn.wordpress.org/trunk@46183 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/network/sites.php | 10 +++++++--- wp-includes/version.php | 2 +- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/wp-admin/network/sites.php b/wp-admin/network/sites.php index 52b4146c39..554e260509 100644 --- a/wp-admin/network/sites.php +++ b/wp-admin/network/sites.php @@ -231,9 +231,13 @@ if ( isset( $_GET['action'] ) ) { wp_safe_redirect( $redirect_to ); exit(); } - } elseif ( ! empty( $_GET['_wp_http_referer'] ) ) { - // process query defined by WP_MS_Site_List_Table::extra_table_nav(). - wp_redirect( remove_query_arg( array( '_wp_http_referer', '_wpnonce' ), wp_unslash( $_SERVER['REQUEST_URI'] ) ) ); + } else { + // Process query defined by WP_MS_Site_List_Table::extra_table_nav(). + $location = remove_query_arg( + array( '_wp_http_referer', '_wpnonce' ), + add_query_arg( $_POST, network_admin_url( 'sites.php' ) ) + ); + wp_redirect( $location ); exit; } diff --git a/wp-includes/version.php b/wp-includes/version.php index 9cf29d53b5..0f693c2880 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.3-beta2-46383'; +$wp_version = '5.3-beta2-46384'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.