diff --git a/wp-admin/includes/file.php b/wp-admin/includes/file.php index 45356841df..da215b7a14 100644 --- a/wp-admin/includes/file.php +++ b/wp-admin/includes/file.php @@ -2202,7 +2202,7 @@ function wp_privacy_send_personal_data_export_email( $request_id ) { $expiration = apply_filters( 'wp_privacy_export_expiration', 3 * DAY_IN_SECONDS ); $expiration_date = date_i18n( get_option( 'date_format' ), time() + $expiration ); -/* translators: Do not translate EXPIRATION, LINK, EMAIL, SITENAME, SITEURL: those are placeholders. */ +/* translators: Do not translate EXPIRATION, LINK, SITENAME, SITEURL: those are placeholders. */ $email_text = __( 'Howdy, @@ -2213,8 +2213,6 @@ so please download it before then. ###LINK### -This email has been sent to ###EMAIL###. - Regards, All at ###SITENAME### ###SITEURL###' @@ -2226,7 +2224,6 @@ All at ###SITENAME### * The following strings have a special meaning and will get replaced dynamically: * ###EXPIRATION### The date when the URL will be automatically deleted. * ###LINK### URL of the personal data export file for the user. - * ###EMAIL### The email we are sending to. * ###SITENAME### The name of the site. * ###SITEURL### The URL to the site. * diff --git a/wp-includes/user.php b/wp-includes/user.php index d309e2f0a7..e3fb895f3d 100644 --- a/wp-includes/user.php +++ b/wp-includes/user.php @@ -3338,7 +3338,7 @@ function wp_send_user_request( $request_id ) { 'siteurl' => network_home_url(), ); - /* translators: Do not translate DESCRIPTION, CONFIRM_URL, EMAIL, SITENAME, SITEURL: those are placeholders. */ + /* translators: Do not translate DESCRIPTION, CONFIRM_URL, SITENAME, SITEURL: those are placeholders. */ $email_text = __( 'Howdy, @@ -3352,8 +3352,6 @@ To confirm this, please click on the following link: You can safely ignore and delete this email if you do not want to take this action. -This email has been sent to ###EMAIL###. - Regards, All at ###SITENAME### ###SITEURL###' @@ -3366,7 +3364,6 @@ All at ###SITENAME### * * ###DESCRIPTION### Description of the action being performed so the user knows what the email is for. * ###CONFIRM_URL### The link to click on to confirm the account action. - * ###EMAIL### The email we are sending to. * ###SITENAME### The name of the site. * ###SITEURL### The URL to the site. * diff --git a/wp-includes/version.php b/wp-includes/version.php index 35abaf7960..c10b863ac3 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '5.0-alpha-43352'; +$wp_version = '5.0-alpha-43353'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.