From 977f7eba2462513453cd84532f8efb7340f71e7e Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Fri, 4 May 2018 01:55:41 +0000 Subject: [PATCH] Privacy: Remove stray closing tag in `WP_Privacy_Policy_Content::get_default_content()`, fix typo in `@return` tag. Props dlh, tobifjellner. Fixes #43951. git-svn-id: https://develop.svn.wordpress.org/trunk@43170 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-admin/includes/misc.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/wp-admin/includes/misc.php b/src/wp-admin/includes/misc.php index df307e4e79..8b52f8d3a8 100644 --- a/src/wp-admin/includes/misc.php +++ b/src/wp-admin/includes/misc.php @@ -1635,7 +1635,7 @@ final class WP_Privacy_Policy_Content { * * @since 4.9.6 * - * @return string The defauld policy content. + * @return string The default policy content. */ public static function get_default_content() { // Start of the suggested privacy policy text. @@ -1705,7 +1705,7 @@ final class WP_Privacy_Policy_Content { '

' . __( 'In this section you should provide a contact method for privacy-specific concerns. If you are required to have a Data Protection Officer, list their name and full contact details here as well.' ) . '

' . '

' . __( 'Additional information' ) . '

' . - '

' . __( 'If you use your website for commercial purposes and you engage in more complex collection or processing of personal data, you should note the following information in your privacy notice in addition to the information we have already discussed.

' ) . '

' . + '

' . __( 'If you use your website for commercial purposes and you engage in more complex collection or processing of personal data, you should note the following information in your privacy notice in addition to the information we have already discussed.' ) . '

' . '

' . __( 'How we protect your data' ) . '

' . '

' . __( 'In this section you should explain what measures you have taken to protect your users’ data. This could include technical measures such as encryption; security measures such as 2FA; and human measures such as staff training in data protection. If you have carried out a Privacy Impact Assessment, you can mention it here too.' ) . '

' .