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
This commit is contained in:
Sergey Biryukov 2018-05-14 14:03:25 +00:00
parent b475d439b3
commit eb592352b5
2 changed files with 3 additions and 3 deletions

View File

@ -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 {
'<p class="privacy-policy-tutorial">' . __( '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.' ) . '</p>' .
'<p class="privacy-policy-tutorial">' . __( '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.' ) . '</p>';
$content .=
'<p>' . $suggested_text . __( 'Visitor comments may be checked through an automated spam detection service.' ) . '</p>';
'<p>' . $suggested_text . __( 'Visitor comments may be checked through an automated spam detection service.' ) . '</p>' .
'<h2>' . __( 'Your contact information' ) . '</h2>';
$descr && $content .=

View File

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