From 86330218cdd16f67b303a9758b62e9cf5e4d6486 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Sat, 28 Nov 2020 17:26:17 +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. git-svn-id: https://develop.svn.wordpress.org/trunk@49705 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-admin/edit-comments.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-admin/edit-comments.php b/src/wp-admin/edit-comments.php index b7aec5d1de..361cd2f47a 100644 --- a/src/wp-admin/edit-comments.php +++ b/src/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 ''; }