From 644cb5fc246eb8b0ce0242e834f5063f5bf62074 Mon Sep 17 00:00:00 2001 From: desrosj Date: Wed, 29 Apr 2020 17:57:14 +0000 Subject: [PATCH] WordPress 5.3.4 Built from https://develop.svn.wordpress.org/branches/5.3@47667 git-svn-id: http://core.svn.wordpress.org/branches/5.3@47444 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/blocks/rss.php | 2 +- wp-includes/blocks/search.php | 2 +- wp-includes/version.php | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/wp-includes/blocks/rss.php b/wp-includes/blocks/rss.php index f1b7f3f19d..0300585de2 100644 --- a/wp-includes/blocks/rss.php +++ b/wp-includes/blocks/rss.php @@ -96,7 +96,7 @@ function render_block_core_rss( $attributes ) { $class .= ' ' . $attributes['className']; } - $list_items_markup = sprintf( "", esc_attr( $class ), $list_items ); + $list_items_markup = ""; // PHP 5.2 compatibility. See: http://simplepie.org/wiki/faq/i_m_getting_memory_leaks. $rss->__destruct(); diff --git a/wp-includes/blocks/search.php b/wp-includes/blocks/search.php index c50b69a441..6cd909fc6f 100644 --- a/wp-includes/blocks/search.php +++ b/wp-includes/blocks/search.php @@ -52,7 +52,7 @@ function render_block_core_search( $attributes ) { return sprintf( '', - esc_attr( $class ), + $class, esc_url( home_url( '/' ) ), $label_markup . $input_markup . $button_markup ); diff --git a/wp-includes/version.php b/wp-includes/version.php index cf05cdba2a..0ed9611e4c 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.3.3-alpha-47644'; +$wp_version = '5.3.4'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.