diff options
author | Dries Buytaert <dries@buytaert.net> | 2007-01-10 09:57:46 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2007-01-10 09:57:46 +0000 |
commit | f927e668629d7b725c13a8d9530bcc9cf168153c (patch) | |
tree | 6d48b1e18e652c6820b8af45bca1c5ef1d665038 /modules | |
parent | 6073b7601d03911c4f17ed06e3afcc8647e8dcb9 (diff) | |
download | brdo-f927e668629d7b725c13a8d9530bcc9cf168153c.tar.gz brdo-f927e668629d7b725c13a8d9530bcc9cf168153c.tar.bz2 |
- Patch #107966 by Ralf: consistent length of textfields.
Diffstat (limited to 'modules')
-rw-r--r-- | modules/user/user.module | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/user/user.module b/modules/user/user.module index 2f9398803..34e935daa 100644 --- a/modules/user/user.module +++ b/modules/user/user.module @@ -893,7 +893,7 @@ function user_login($msg = '') { } $form['name'] = array('#type' => 'textfield', '#title' => t('Username'), - '#size' => 30, + '#size' => 60, '#maxlength' => USERNAME_MAX_LENGTH, '#required' => TRUE, '#attributes' => array('tabindex' => '1'), @@ -1030,7 +1030,7 @@ function user_pass() { // Display form: $form['name'] = array('#type' => 'textfield', '#title' => t('Username or e-mail address'), - '#size' => 30, + '#size' => 60, '#maxlength' => max(USERNAME_MAX_LENGTH, EMAIL_MAX_LENGTH), '#required' => TRUE, ); |