From fec79b74d7cd7f7e14057dce6ff237b46fa38241 Mon Sep 17 00:00:00 2001 From: Jb Audras Date: Thu, 20 Feb 2025 23:30:29 +0000 Subject: [PATCH] Bundled Themes: Prevent a fatal error occurring with Twenty Fourteen paginated navigation. This changeset replaces `array_map( 'urlencode', $query_args )` with `urlencode_deep( $query_args )` in `twentyfourteen_paging_nav()` to prevent a fatal error when an array is provided in the query vars. Props takayukister, pratiklondhe, rinkalpagdar. Fixes #62972. git-svn-id: https://develop.svn.wordpress.org/trunk@59851 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-content/themes/twentyfourteen/inc/template-tags.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-content/themes/twentyfourteen/inc/template-tags.php b/src/wp-content/themes/twentyfourteen/inc/template-tags.php index 7e48884089..26def1afc0 100644 --- a/src/wp-content/themes/twentyfourteen/inc/template-tags.php +++ b/src/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' ), )