From efc61d054e6521433e382da67ef47c04c812f24c Mon Sep 17 00:00:00 2001 From: Scott Taylor Date: Sun, 4 Jan 2015 02:06:04 +0000 Subject: [PATCH] After [31037], ensure that the library is passed as a map to the Media Grid instance. Remove useless query vars. Fixes #30584. git-svn-id: https://develop.svn.wordpress.org/trunk@31041 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-admin/upload.php | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/src/wp-admin/upload.php b/src/wp-admin/upload.php index d0aa5e69c4..325612bd31 100644 --- a/src/wp-admin/upload.php +++ b/src/wp-admin/upload.php @@ -26,11 +26,16 @@ if ( 'grid' === $mode ) { wp_enqueue_script( 'media' ); $vars = wp_edit_attachments_query_vars(); - unset( $vars['mode'], $vars['post_type'], $vars['post_status'], $vars['posts_per_page'] ); + $ignore = array( 'mode', 'post_type', 'post_status', 'posts_per_page' ); + foreach ( $vars as $key => $value ) { + if ( ! $value || in_array( $key, $ignore ) ) { + unset( $vars[ $key ] ); + } + } wp_localize_script( 'media-grid', '_wpMediaGridSettings', array( 'adminUrl' => parse_url( self_admin_url(), PHP_URL_PATH ), - 'queryVars' => $vars + 'queryVars' => (object) $vars ) ); get_current_screen()->add_help_tab( array(