summaryrefslogtreecommitdiff
path: root/modules/system/system.module
diff options
context:
space:
mode:
authorSteven Wittens <steven@10.no-reply.drupal.org>2007-01-11 03:24:42 +0000
committerSteven Wittens <steven@10.no-reply.drupal.org>2007-01-11 03:24:42 +0000
commit36cd6b2b21a61cc73d837bcac22b163a39ef5e44 (patch)
tree0fe2d5d23534aa9d5506faefdba9c398abf4df33 /modules/system/system.module
parent8bd8a972829839f16a6234e7d93e7c6d9077f004 (diff)
downloadbrdo-36cd6b2b21a61cc73d837bcac22b163a39ef5e44.tar.gz
brdo-36cd6b2b21a61cc73d837bcac22b163a39ef5e44.tar.bz2
#107966: Make login fields consistent size.
Diffstat (limited to 'modules/system/system.module')
-rw-r--r--modules/system/system.module2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/system/system.module b/modules/system/system.module
index b735f5689..5bb4f67ae 100644
--- a/modules/system/system.module
+++ b/modules/system/system.module
@@ -62,7 +62,7 @@ function system_elements() {
$type['submit'] = array('#input' => TRUE, '#name' => 'op', '#button_type' => 'submit', '#executes_submit_callback' => TRUE);
$type['button'] = array('#input' => TRUE, '#name' => 'op', '#button_type' => 'submit', '#executes_submit_callback' => FALSE);
$type['textfield'] = array('#input' => TRUE, '#size' => 60, '#maxlength' => 128, '#autocomplete_path' => FALSE);
- $type['password'] = array('#input' => TRUE, '#size' => 30);
+ $type['password'] = array('#input' => TRUE, '#size' => 60);
$type['password_confirm'] = array('#input' => TRUE, '#process' => array('expand_password_confirm' => array()));
$type['textarea'] = array('#input' => TRUE, '#cols' => 60, '#rows' => 5);
$type['radios'] = array('#input' => TRUE, '#process' => array('expand_radios' => array()));