From eb592352b542909013fac14e73ca6dc167fc1507 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Mon, 14 May 2018 14:03:25 +0000 Subject: [PATCH] Privacy: fix two typos in `WP_Privacy_Policy_Content::get_default_content()`. Props dlh. Merges [43249] to the 4.9 branch. Fixes #44050. Built from https://develop.svn.wordpress.org/branches/4.9@43254 git-svn-id: http://core.svn.wordpress.org/branches/4.9@43083 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/includes/misc.php | 4 ++-- wp-includes/version.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/wp-admin/includes/misc.php b/wp-admin/includes/misc.php index 4756f24b84..5f184f45f3 100644 --- a/wp-admin/includes/misc.php +++ b/wp-admin/includes/misc.php @@ -1637,7 +1637,7 @@ final class WP_Privacy_Policy_Content { * * @since 4.9.6 * - * @param bool $descr Whether to include the descriptions undet the section headings. Default false. + * @param bool $descr Whether to include the descriptions under the section headings. Default false. * @return string The default policy content. */ public static function get_default_content( $descr = false ) { @@ -1724,7 +1724,7 @@ final class WP_Privacy_Policy_Content { '

' . __( 'In this section you should list all transfers of your site data outside the European Union and describe the means by which that data is safeguarded to European data protection standards. This could include your web hosting, cloud storage, or other third party services.' ) . '

' . '

' . __( 'European data protection law requires data about European residents which is transferred outside the European Union to be safeguarded to the same standards as if the data was in Europe. So in addition to listing where data goes, you should describe how you ensure that these standards are met either by yourself or by your third party providers, whether that is through an agreement such as Privacy Shield, model clauses in your contracts, or binding corporate rules.' ) . '

'; $content .= - '

' . $suggested_text . __( 'Visitor comments may be checked through an automated spam detection service.' ) . '

'; + '

' . $suggested_text . __( 'Visitor comments may be checked through an automated spam detection service.' ) . '

' . '

' . __( 'Your contact information' ) . '

'; $descr && $content .= diff --git a/wp-includes/version.php b/wp-includes/version.php index 60e3663a90..3c0962fe10 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.9.6-RC1-43253'; +$wp_version = '4.9.6-RC1-43254'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.