summaryrefslogtreecommitdiff
path: root/modules/user.module
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2006-01-13 14:54:51 +0000
committerDries Buytaert <dries@buytaert.net>2006-01-13 14:54:51 +0000
commit403c1c0404a3cf8330d47460a7d0c5bbe3214bac (patch)
tree54685e8c52711e6509cdf0da0466c1441a93242a /modules/user.module
parent6ff8147a75fbb1977b0e73a66c39dcf7f9844f4d (diff)
downloadbrdo-403c1c0404a3cf8330d47460a7d0c5bbe3214bac.tar.gz
brdo-403c1c0404a3cf8330d47460a7d0c5bbe3214bac.tar.bz2
- Added trailing point.
Diffstat (limited to 'modules/user.module')
-rw-r--r--modules/user.module2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/user.module b/modules/user.module
index bc5909dea..a02b97fe5 100644
--- a/modules/user.module
+++ b/modules/user.module
@@ -1177,7 +1177,7 @@ function user_edit_form($uid, $edit) {
$form['account']['name'] = array('#type' => 'textfield', '#title' => t('Username'), '#default_value' => $edit['name'], '#maxlength' => 55, '#description' => t('Your full name or your preferred username: only letters, numbers and spaces are allowed.'), '#required' => TRUE);
}
$form['account']['mail'] = array('#type' => 'textfield', '#title' => t('E-mail address'), '#default_value' => $edit['mail'], '#maxlength' => 55, '#description' => 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.'), '#required' => TRUE);
- $form['account']['pass'] = array('#type' => 'password_confirm', '#title' => t('Password'), '#description' => t('To change the current user password, enter the new password in both fields'));
+ $form['account']['pass'] = array('#type' => 'password_confirm', '#title' => t('Password'), '#description' => t('To change the current user password, enter the new password in both fields.'));
if (user_access('administer users')) {
$form['account']['status'] = array('#type' => 'radios', '#title' => t('Status'), '#default_value' => $edit['status'], '#options' => array(t('Blocked'), t('Active')));
}