From f183dd84f13587ed842c9bc3b185ed62e4923ff1 Mon Sep 17 00:00:00 2001 From: Jonathan Desrosiers Date: Fri, 4 Oct 2019 14:31:05 +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. git-svn-id: https://develop.svn.wordpress.org/trunk@46384 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-admin/network/sites.php | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/src/wp-admin/network/sites.php b/src/wp-admin/network/sites.php index 52b4146c39..554e260509 100644 --- a/src/wp-admin/network/sites.php +++ b/src/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; }