summaryrefslogtreecommitdiff
path: root/modules/user
diff options
context:
space:
mode:
authorGábor Hojtsy <gabor@hojtsy.hu>2007-10-27 15:28:43 +0000
committerGábor Hojtsy <gabor@hojtsy.hu>2007-10-27 15:28:43 +0000
commitcb9fc93e322904f47c3f10f5eb1b17c3504fd8a4 (patch)
tree37721d4af3cac5bedaf5c6aaddbea37e3d4e0ad7 /modules/user
parent941756bad265a921fd74f8c19f83f5dfdff6b757 (diff)
downloadbrdo-cb9fc93e322904f47c3f10f5eb1b17c3504fd8a4.tar.gz
brdo-cb9fc93e322904f47c3f10f5eb1b17c3504fd8a4.tar.bz2
#186899 by keith.smith: user registration settings typo fix
Diffstat (limited to 'modules/user')
-rw-r--r--modules/user/user.admin.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/user/user.admin.inc b/modules/user/user.admin.inc
index 838dff521..2076e7a41 100644
--- a/modules/user/user.admin.inc
+++ b/modules/user/user.admin.inc
@@ -231,7 +231,7 @@ function user_admin_settings() {
// User registration settings.
$form['registration'] = array('#type' => 'fieldset', '#title' => t('User registration settings'));
$form['registration']['user_register'] = array('#type' => 'radios', '#title' => t('Public registrations'), '#default_value' => variable_get('user_register', 1), '#options' => array(t('Only site administrators can create new user accounts.'), t('Visitors can create accounts and no administrator approval is required.'), t('Visitors can create accounts but administrator approval is required.')));
- $form['registration']['user_email_verification'] = array('#type' => 'checkbox', '#title' => t('Require e-mail verification when a visitor creates an account'), '#default_value' => variable_get('user_email_verification', TRUE), '#description' => t('If this box is checked, new users will be required to validate their e-mail address prior to logging into to the site, and will be assigned a system-generated password. With it unchecked, users will be logged in immediately upon registering, and may select their own passwords during registration.'));
+ $form['registration']['user_email_verification'] = array('#type' => 'checkbox', '#title' => t('Require e-mail verification when a visitor creates an account'), '#default_value' => variable_get('user_email_verification', TRUE), '#description' => t('If this box is checked, new users will be required to validate their e-mail address prior to logging into the site, and will be assigned a system-generated password. With it unchecked, users will be logged in immediately upon registering, and may select their own passwords during registration.'));
$form['registration']['user_registration_help'] = array('#type' => 'textarea', '#title' => t('User registration guidelines'), '#default_value' => variable_get('user_registration_help', ''), '#description' => t('This text is displayed at the top of the user registration form and is useful for helping or instructing your users.'));
// User e-mail settings.