From 22582080839da86215171b1ed7bb57a429917176 Mon Sep 17 00:00:00 2001 From: Alex Pott <alex.a.pott@googlemail.com> Date: Tue, 4 Oct 2022 19:07:46 +0100 Subject: [PATCH] Issue #3110761 by Vivek Panicker, anagomes, lucassc, apaderno, Sivaji_Ganesh_Jojodae, bnjmnm: Make more explicit the email address is necessary to recover the password --- core/modules/user/src/AccountForm.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/modules/user/src/AccountForm.php b/core/modules/user/src/AccountForm.php index b157be34d0dd..c74619fddc7c 100644 --- a/core/modules/user/src/AccountForm.php +++ b/core/modules/user/src/AccountForm.php @@ -96,7 +96,7 @@ public function form(array $form, FormStateInterface $form_state) { $form['account']['mail'] = [ '#type' => 'email', '#title' => $this->t('Email address'), - '#description' => $this->t('A valid email address. All emails from the system will be sent to this address. The email address is not made public and will only be used if you wish to receive a new password or wish to receive certain news or notifications by email.'), + '#description' => $this->t('The email address is not made public. It will only be used if you need to be contacted about your account or for opted-in notifications.'), '#required' => !(!$account->getEmail() && $user->hasPermission('administer users')), '#default_value' => (!$register ? $account->getEmail() : ''), ]; -- GitLab