From 7e62a755b514ae42d5380f45d2e66d8b15db506a Mon Sep 17 00:00:00 2001
From: catch <catch@35733.no-reply.drupal.org>
Date: Tue, 15 Nov 2011 11:03:28 +0900
Subject: [PATCH] Issue #1326172 by David_Rothstein: Improve wording of the
 'Current password' field description on the user edit form.

---
 core/modules/user/user.module | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/core/modules/user/user.module b/core/modules/user/user.module
index abf74776ecf1..260124c66f04 100644
--- a/core/modules/user/user.module
+++ b/core/modules/user/user.module
@@ -989,7 +989,7 @@ function user_account_form(&$form, &$form_state) {
       $protected_values['mail'] = $form['account']['mail']['#title'];
       $protected_values['pass'] = t('Password');
       $request_new = l(t('Request new password'), 'user/password', array('attributes' => array('title' => t('Request new password via e-mail.'))));
-      $current_pass_description = t('Enter your current password to change the %mail or %pass. !request_new.', array('%mail' => $protected_values['mail'], '%pass' => $protected_values['pass'], '!request_new' => $request_new));
+      $current_pass_description = t('Required if you want to change the %mail or %pass below. !request_new.', array('%mail' => $protected_values['mail'], '%pass' => $protected_values['pass'], '!request_new' => $request_new));
     }
     // The user must enter their current password to change to a new one.
     if ($user->uid == $account->uid) {
-- 
GitLab