From ac66d2f01e5c4ad548c785f87c8de404a95d9653 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Sat, 27 May 2023 09:53:25 +0000 Subject: [PATCH] Themes: Use correct escaping function for `aria-label` in `_navigation_markup()`. Follow-up to [46236]. Props sabernhardt, costdev, mukesh27. Fixes #58387. Built from https://develop.svn.wordpress.org/trunk@55863 git-svn-id: http://core.svn.wordpress.org/trunk@55375 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/link-template.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-includes/link-template.php b/wp-includes/link-template.php index 59bc5d2fc1..28c65c8d0a 100644 --- a/wp-includes/link-template.php +++ b/wp-includes/link-template.php @@ -3024,7 +3024,7 @@ function _navigation_markup( $links, $css_class = 'posts-navigation', $screen_re */ $template = apply_filters( 'navigation_markup_template', $template, $css_class ); - return sprintf( $template, sanitize_html_class( $css_class ), esc_html( $screen_reader_text ), $links, esc_html( $aria_label ) ); + return sprintf( $template, sanitize_html_class( $css_class ), esc_html( $screen_reader_text ), $links, esc_attr( $aria_label ) ); } /** diff --git a/wp-includes/version.php b/wp-includes/version.php index 1bffcbb766..5f061e4ac9 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.3-alpha-55862'; +$wp_version = '6.3-alpha-55863'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.