From d9382d8c1508e94cf6b7748ed981d95ca5729be7 Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Sun, 23 Jan 2005 15:39:49 +0000 Subject: - Patch #16028 by Goba: added class="form-password" to the password form. --- modules/user.module | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'modules/user.module') diff --git a/modules/user.module b/modules/user.module index 56e7472cb..749032206 100644 --- a/modules/user.module +++ b/modules/user.module @@ -1033,7 +1033,7 @@ function user_edit_form($uid, $edit) { // Account information: $group = form_textfield(t('Username'), 'name', $edit['name'], 30, 55, t('Your full name or your preferred username: only letters, numbers and spaces are allowed.'), NULL, TRUE); $group .= form_textfield(t('E-mail address'), 'mail', $edit['mail'], 30, 55, t('Insert a valid e-mail address. All e-mails from the system will be sent to this address. The e-mail 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 e-mail.'), NULL, TRUE); - $group .= form_item(t('Password'), ' ', t('Enter your new password twice if you want to change your current password, or leave it blank if you are happy with your current password.'), NULL, TRUE); + $group .= form_item(t('Password'), ' ', t('Enter your new password twice if you want to change your current password, or leave it blank if you are happy with your current password.'), NULL, TRUE); if (user_access('administer users')) { $group .= form_radios(t('Status'), 'status', $edit['status'], array(t('Blocked'), t('Active'))); -- cgit v1.2.3