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
This commit is contained in:
audrasjb 2022-09-20 21:14:09 +00:00
parent c117e5ae74
commit f2b9a6c546
2 changed files with 2 additions and 2 deletions

View File

@ -141,7 +141,7 @@ get_current_screen()->add_help_tab(
// Help tab: Block themes.
$help_block_themes =
'<p>' . __( '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.' ) . '</p>' .
'<p>' . __( ' With a block theme, you can place and edit blocks without affecting your content by customizing or creating new templates.' ) . '</p>';
'<p>' . __( 'With a block theme, you can place and edit blocks without affecting your content by customizing or creating new templates.' ) . '</p>';
get_current_screen()->add_help_tab(
array(

View File

@ -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.