diff --git a/wp-content/themes/twentyfourteen/inc/template-tags.php b/wp-content/themes/twentyfourteen/inc/template-tags.php index 7e48884089..26def1afc0 100644 --- a/wp-content/themes/twentyfourteen/inc/template-tags.php +++ b/wp-content/themes/twentyfourteen/inc/template-tags.php @@ -47,7 +47,7 @@ if ( ! function_exists( 'twentyfourteen_paging_nav' ) ) : 'total' => $wp_query->max_num_pages, 'current' => $paged, 'mid_size' => 1, - 'add_args' => array_map( 'urlencode', $query_args ), + 'add_args' => urlencode_deep( $query_args ), 'prev_text' => __( '← Previous', 'twentyfourteen' ), 'next_text' => __( 'Next →', 'twentyfourteen' ), ) diff --git a/wp-includes/version.php b/wp-includes/version.php index 61e173895f..a7e9cbdd95 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.8-alpha-59850'; +$wp_version = '6.8-alpha-59851'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.