From 279759483598668d8077d3d10ddcd4aca41d3eb7 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Sat, 28 Nov 2020 17:28:05 +0000 Subject: [PATCH] Comments: Correct ending tag placement in the "Search results for: ..." subtitle. Follow-up to [49284], [49286]. Props Clorith, kebbet, johnbillion, audrasjb, azaozz. Fixes #51889. See #37353. Built from https://develop.svn.wordpress.org/trunk@49705 git-svn-id: http://core.svn.wordpress.org/trunk@49428 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/edit-comments.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-admin/edit-comments.php b/wp-admin/edit-comments.php index b7aec5d1de..361cd2f47a 100644 --- a/wp-admin/edit-comments.php +++ b/wp-admin/edit-comments.php @@ -233,7 +233,7 @@ if ( isset( $_REQUEST['s'] ) && strlen( $_REQUEST['s'] ) ) { printf( /* translators: %s: Search query. */ __( 'Search results for: %s' ), - '' . wp_html_excerpt( esc_html( wp_unslash( $_REQUEST['s'] ) ), 50, '…' . '' ) + '' . wp_html_excerpt( esc_html( wp_unslash( $_REQUEST['s'] ) ), 50, '…' ) . '' ); echo ''; } diff --git a/wp-includes/version.php b/wp-includes/version.php index cb871ecff2..312510e339 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.7-alpha-49704'; +$wp_version = '5.7-alpha-49705'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.