From 2d18007ac5fac0142d9cf813bfc80da05eec4035 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Thu, 8 Jul 2021 17:07:58 +0000 Subject: [PATCH] Coding Standards: Remove wrapping HTML tags from translatable strings. This fixes a "Strings should not be wrapped in HTML" WPCS warning in help tabs for Export Personal Data and Erase Personal Data screens. Follow-up to [50147]. See #53359. Built from https://develop.svn.wordpress.org/trunk@51381 git-svn-id: http://core.svn.wordpress.org/trunk@50992 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/erase-personal-data.php | 2 +- wp-admin/export-personal-data.php | 2 +- wp-includes/version.php | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/wp-admin/erase-personal-data.php b/wp-admin/erase-personal-data.php index d841839fd2..3bc787cbe9 100644 --- a/wp-admin/erase-personal-data.php +++ b/wp-admin/erase-personal-data.php @@ -22,7 +22,7 @@ get_current_screen()->add_help_tab( '

' . __( 'This screen allows you to manage requests to erase or delete personal data.' ) . '

' . '

' . __( 'Deleting, anonymizing, or forgetting all data that a business or website has collected about an individual is a requirement of many Privacy Laws around the world, and is sometimes referred to as the "Right To Be Forgotten".' ) . '

' . '

' . __( 'The tool associates data stored in WordPress by a supplied email address, including profile data and comments.' ) . '

' . - '

' . __( 'Note: As this tool only gathers data from WordPress and participating plugins, you may need to do more to comply with erasure requests. You should also delete any data collected by or stored with any 3rd party services used by your business or site.' ) . '

', + '

' . __( 'Note: As this tool only gathers data from WordPress and participating plugins, you may need to do more to comply with erasure requests. You should also delete any data collected by or stored with any 3rd party services used by your business or site.' ) . '

', ) ); diff --git a/wp-admin/export-personal-data.php b/wp-admin/export-personal-data.php index a184271c98..294397234a 100644 --- a/wp-admin/export-personal-data.php +++ b/wp-admin/export-personal-data.php @@ -22,7 +22,7 @@ get_current_screen()->add_help_tab( '

' . __( 'This screen allows you to manage requests for an export of personal data.' ) . '

' . '

' . __( 'Providing an export of all data that a business or website has collected about an individual is a requirement of many Privacy Laws around the world, and is sometimes referred to as the "Right To Data Portability".' ) . '

' . '

' . __( 'The tool associates data stored in WordPress by a supplied email address, including profile data and comments.' ) . '

' . - '

' . __( 'Note: As this tool only gathers data from WordPress and participating plugins, you may need to do more to comply with export requests. You should also send the requestor any data collected by or stored with any 3rd party services used by your business or site.' ) . '

', + '

' . __( 'Note: As this tool only gathers data from WordPress and participating plugins, you may need to do more to comply with export requests. You should also send the requestor any data collected by or stored with any 3rd party services used by your business or site.' ) . '

', ) ); diff --git a/wp-includes/version.php b/wp-includes/version.php index 142269fdc0..d1c750004a 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.9-alpha-51380'; +$wp_version = '5.9-alpha-51381'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.