diff options
-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 6f25300b3..e3a17dbe0 100644 --- a/modules/user.module +++ b/modules/user.module @@ -524,7 +524,7 @@ function user_block($op = 'list', $delta = 0, $edit = array()) { // might already be set. $output .= form_textfield(t('Username'), 'name', $edit['name'], 15, 64); - $output .= form_password(t('Password'), 'pass', $pass, 15, 64); + $output .= form_password(t('Password'), 'pass', '', 15, 64); $output .= form_submit(t('Log in')); $output .= "</div>\n"; diff --git a/modules/user/user.module b/modules/user/user.module index 6f25300b3..e3a17dbe0 100644 --- a/modules/user/user.module +++ b/modules/user/user.module @@ -524,7 +524,7 @@ function user_block($op = 'list', $delta = 0, $edit = array()) { // might already be set. $output .= form_textfield(t('Username'), 'name', $edit['name'], 15, 64); - $output .= form_password(t('Password'), 'pass', $pass, 15, 64); + $output .= form_password(t('Password'), 'pass', '', 15, 64); $output .= form_submit(t('Log in')); $output .= "</div>\n"; |