From f2b9a6c546d2b7d72113489742d29586e3064b49 Mon Sep 17 00:00:00 2001 From: audrasjb Date: Tue, 20 Sep 2022 21:14:09 +0000 Subject: [PATCH] Help/About: Remove an unwanted whitespace in a Theme Install screen help tab string. Follow-up to [54252]. Props kebbet. Fixes #56405. Built from https://develop.svn.wordpress.org/trunk@54268 git-svn-id: http://core.svn.wordpress.org/trunk@53827 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/theme-install.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-admin/theme-install.php b/wp-admin/theme-install.php index 558181d961..e07b299901 100644 --- a/wp-admin/theme-install.php +++ b/wp-admin/theme-install.php @@ -141,7 +141,7 @@ get_current_screen()->add_help_tab( // Help tab: Block themes. $help_block_themes = '

' . __( 'A block theme is a theme that uses blocks for all parts of a site including navigation menus, header, content, and site footer. These themes are built for the features that allow you to edit and customize all parts of your site.' ) . '

' . - '

' . __( ' With a block theme, you can place and edit blocks without affecting your content by customizing or creating new templates.' ) . '

'; + '

' . __( 'With a block theme, you can place and edit blocks without affecting your content by customizing or creating new templates.' ) . '

'; get_current_screen()->add_help_tab( array( diff --git a/wp-includes/version.php b/wp-includes/version.php index 55fb0f3a63..fefafaad78 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.1-alpha-54267'; +$wp_version = '6.1-alpha-54268'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.