diff --git a/wp-admin/upload.php b/wp-admin/upload.php index d0aa5e69c4..325612bd31 100644 --- a/wp-admin/upload.php +++ b/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( diff --git a/wp-includes/version.php b/wp-includes/version.php index 3158597e09..c76b980c46 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.2-alpha-31040'; +$wp_version = '4.2-alpha-31041'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.