From 65866fa2335392d369357af52ab1b40061cdda5c Mon Sep 17 00:00:00 2001 From: johnjamesjacoby Date: Mon, 8 Nov 2021 21:55:00 +0000 Subject: [PATCH] Admin/Help: add commas to end of multi-line array items. Follow up to r52053. See #54357. Built from https://develop.svn.wordpress.org/trunk@52055 git-svn-id: http://core.svn.wordpress.org/trunk@51647 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/options-privacy.php | 2 +- wp-admin/site-health.php | 2 +- wp-includes/version.php | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/wp-admin/options-privacy.php b/wp-admin/options-privacy.php index 0e135caa48..fbd69f23a7 100644 --- a/wp-admin/options-privacy.php +++ b/wp-admin/options-privacy.php @@ -35,7 +35,7 @@ get_current_screen()->add_help_tab( 'title' => __( 'Overview' ), 'content' => '

' . __( 'The Privacy screen lets you either build a new privacy-policy page or choose one you already have to show.' ) . '

' . - '

' . __( 'This screen includes suggestions to help you write your own privacy policy. However, it is your responsibility to use these resources correctly, to provide the information required by your privacy policy, and to keep this information current and accurate.' ) . '

' + '

' . __( 'This screen includes suggestions to help you write your own privacy policy. However, it is your responsibility to use these resources correctly, to provide the information required by your privacy policy, and to keep this information current and accurate.' ) . '

', ) ); diff --git a/wp-admin/site-health.php b/wp-admin/site-health.php index 4a930d07a5..4421aba67f 100644 --- a/wp-admin/site-health.php +++ b/wp-admin/site-health.php @@ -81,7 +81,7 @@ get_current_screen()->add_help_tab( 'content' => '

' . __( 'This screen allows you to obtain a health diagnosis of your site, and displays an overall rating of the status of your installation.' ) . '

' . '

' . __( 'In the Status tab, you can see critical information about your WordPress configuration, along with anything else that requires your attention.' ) . '

' . - '

' . __( 'In the Info tab, you will find all the details about the configuration of your WordPress site, server, and database. There is also an export feature that allows you to copy all of the information about your site to the clipboard, help solve problems on your site when obtaining support.' ) . '

' + '

' . __( 'In the Info tab, you will find all the details about the configuration of your WordPress site, server, and database. There is also an export feature that allows you to copy all of the information about your site to the clipboard, help solve problems on your site when obtaining support.' ) . '

', ) ); diff --git a/wp-includes/version.php b/wp-includes/version.php index 21d340d391..28ada923f9 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '5.9-alpha-52054'; +$wp_version = '5.9-alpha-52055'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.