diff options
author | Dries Buytaert <dries@buytaert.net> | 2001-09-18 21:13:52 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2001-09-18 21:13:52 +0000 |
commit | 75982edbd2a48f3ef770e865a1c195f5b5ab8984 (patch) | |
tree | 39c4e101f6ee535915992439155e6feb36ca1c35 | |
parent | 7bcd338292269510c26e5ba15236fe8e9d2a2c07 (diff) | |
download | brdo-75982edbd2a48f3ef770e865a1c195f5b5ab8984.tar.gz brdo-75982edbd2a48f3ef770e865a1c195f5b5ab8984.tar.bz2 |
- fixed another bug in the new user.module (reported by Remco).
-rw-r--r-- | modules/user.module | 2 | ||||
-rw-r--r-- | modules/user/user.module | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/modules/user.module b/modules/user.module index 90744a450..d62ada230 100644 --- a/modules/user.module +++ b/modules/user.module @@ -805,7 +805,7 @@ function user_page() { function user_conf_options() { $output .= form_select("Allow authentication with Drupal IDs", "user_drupal", variable_get("user_drupal", 1), array("Disabled", "Enabled"), "Allow people to authenticate with their Drupal ID and password from other Drupal sites."); $output .= form_select("Allow authentication with Jabber IDs", "user_jabber", variable_get("user_jabber", 1), array("Disabled", "Enabled"), "Allow people to authenticate with their Jabber ID."); - $output .= form_select("Public registrations", "user_register", variable_get("user_register", 1), array("Only site administrators can create new user accounts.", "Visitors can create accounts but administrator approval is required.", "Visitors can create accounts and no administrator approval is required.")); + $output .= form_select("Public registrations", "user_register", variable_get("user_register", 1), array("Only site administrators can create new user accounts.", "Visitors can create accounts and no administrator approval is required.", "Visitors can create accounts but administrator approval is required.")); $output .= form_textfield("Password words", "user_password", variable_get("user_password", "foo,bar,guy,neo,tux,moo,sun,asm,dot,god,axe,geek,nerd,fish,hack,star,mice,warp,moon,hero,cola,girl,fish,java,perl,boss,dark,sith,jedi,drop,mojo"), 55, 256, "A comma separated list of short words that can be concatenated to generate human-readable passwords."); return $output; diff --git a/modules/user/user.module b/modules/user/user.module index 90744a450..d62ada230 100644 --- a/modules/user/user.module +++ b/modules/user/user.module @@ -805,7 +805,7 @@ function user_page() { function user_conf_options() { $output .= form_select("Allow authentication with Drupal IDs", "user_drupal", variable_get("user_drupal", 1), array("Disabled", "Enabled"), "Allow people to authenticate with their Drupal ID and password from other Drupal sites."); $output .= form_select("Allow authentication with Jabber IDs", "user_jabber", variable_get("user_jabber", 1), array("Disabled", "Enabled"), "Allow people to authenticate with their Jabber ID."); - $output .= form_select("Public registrations", "user_register", variable_get("user_register", 1), array("Only site administrators can create new user accounts.", "Visitors can create accounts but administrator approval is required.", "Visitors can create accounts and no administrator approval is required.")); + $output .= form_select("Public registrations", "user_register", variable_get("user_register", 1), array("Only site administrators can create new user accounts.", "Visitors can create accounts and no administrator approval is required.", "Visitors can create accounts but administrator approval is required.")); $output .= form_textfield("Password words", "user_password", variable_get("user_password", "foo,bar,guy,neo,tux,moo,sun,asm,dot,god,axe,geek,nerd,fish,hack,star,mice,warp,moon,hero,cola,girl,fish,java,perl,boss,dark,sith,jedi,drop,mojo"), 55, 256, "A comma separated list of short words that can be concatenated to generate human-readable passwords."); return $output; |