From d740727ea89ab74f94aa2f184dbf5770753b65f1 Mon Sep 17 00:00:00 2001 From: Tonya Mork Date: Wed, 27 Sep 2023 15:42:29 +0000 Subject: [PATCH] Text Changes: Remove empty space in Erase Personal Data help tab. Improves the text by removing an empty space at the end of a string within the "Default Data" help tab of the "Erase Personal Data". Props azharckra, kebbet, krupalpanchal, mukesh27. Follow-up to [53182]. Fixes #59473. git-svn-id: https://develop.svn.wordpress.org/trunk@56734 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-admin/erase-personal-data.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-admin/erase-personal-data.php b/src/wp-admin/erase-personal-data.php index 0d2d96af45..9a17c2b346 100644 --- a/src/wp-admin/erase-personal-data.php +++ b/src/wp-admin/erase-personal-data.php @@ -34,7 +34,7 @@ get_current_screen()->add_help_tab( 'id' => 'default-data', 'title' => __( 'Default Data' ), 'content' => - '

' . __( 'WordPress collects (but never publishes) a limited amount of data from logged-in users but then deletes it or anonymizes it. That data can include: ' ) . '

' . + '

' . __( 'WordPress collects (but never publishes) a limited amount of data from logged-in users but then deletes it or anonymizes it. That data can include:' ) . '

' . '

' . __( 'Profile Information — user email address, username, display name, nickname, first name, last name, description/bio, and registration date.' ) . '

' . '

' . __( 'Community Events Location — The IP Address of the user which is used for the Upcoming Community Events shown in the dashboard widget.' ) . '

' . '

' . __( 'Session Tokens — User login information, IP Addresses, Expiration Date, User Agent (Browser/OS), and Last Login.' ) . '

' .