diff --git a/core/modules/user/user.module b/core/modules/user/user.module index abf74776ecf1f8069346b14dcbf427590fab8117..260124c66f0426779d5e88b73cd682b301b6ce3c 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) {