diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-03-01 17:19:08 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-03-01 17:19:08 +0000 |
commit | 70d915313f3aa806633f65e8248097464dfd65cc (patch) | |
tree | 073cf805ba8e73421b42eb16cfa4865353dd0d2e /modules | |
parent | 27369e8b96226dc92496a04560ab4561be5a10d3 (diff) | |
download | brdo-70d915313f3aa806633f65e8248097464dfd65cc.tar.gz brdo-70d915313f3aa806633f65e8248097464dfd65cc.tar.bz2 |
#287178 follow-up by dereine and Dave Reid: Fix notice in OpenID module which is referencing missing form_id variable.
Diffstat (limited to 'modules')
-rw-r--r-- | modules/openid/openid.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/openid/openid.module b/modules/openid/openid.module index bc278abbc..094c84a20 100644 --- a/modules/openid/openid.module +++ b/modules/openid/openid.module @@ -114,7 +114,7 @@ function _openid_user_login_form_alter(&$form, &$form_state) { $form['openid_identifier'] = array( '#type' => 'textfield', '#title' => t('Log in using OpenID'), - '#size' => ($form_id == 'user_login') ? 58 : 13, + '#size' => $form['name']['#size'], '#maxlength' => 255, '#weight' => -1, '#description' => l(t('What is OpenID?'), 'http://openid.net/', array('external' => TRUE)), |