summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--modules/user.module2
-rw-r--r--modules/user/user.module2
2 files changed, 2 insertions, 2 deletions
diff --git a/modules/user.module b/modules/user.module
index acc505f75..9558b7c3e 100644
--- a/modules/user.module
+++ b/modules/user.module
@@ -523,7 +523,7 @@ function user_block($op = 'list', $delta = 0, $edit = array()) {
// For usability's sake, avoid showing two login forms on one page.
if (!$user->uid && !(arg(0) == 'user' && !is_numeric(arg(1)))) {
$form['#action'] = url($_GET['q'], drupal_get_destination());
- $form['#attributes'] = array('id' => 'user-login-form');
+ $form['#id'] = 'user-login-form';
$form['name'] = array('#type' => 'textfield',
'#title' => t('Username'),
'#maxlength' => 60,
diff --git a/modules/user/user.module b/modules/user/user.module
index acc505f75..9558b7c3e 100644
--- a/modules/user/user.module
+++ b/modules/user/user.module
@@ -523,7 +523,7 @@ function user_block($op = 'list', $delta = 0, $edit = array()) {
// For usability's sake, avoid showing two login forms on one page.
if (!$user->uid && !(arg(0) == 'user' && !is_numeric(arg(1)))) {
$form['#action'] = url($_GET['q'], drupal_get_destination());
- $form['#attributes'] = array('id' => 'user-login-form');
+ $form['#id'] = 'user-login-form';
$form['name'] = array('#type' => 'textfield',
'#title' => t('Username'),
'#maxlength' => 60,