diff options
author | Dries Buytaert <dries@buytaert.net> | 2008-10-26 18:06:39 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2008-10-26 18:06:39 +0000 |
commit | df2cf40d2cd197ed5f1960b026b31aad32b5d930 (patch) | |
tree | c34e2f3b6f44f11002859353864f32ce613fa71c /modules/openid/openid.module | |
parent | 617fe51e625e1bf43d31c8c3f08325d67af2d9d4 (diff) | |
download | brdo-df2cf40d2cd197ed5f1960b026b31aad32b5d930.tar.gz brdo-df2cf40d2cd197ed5f1960b026b31aad32b5d930.tar.bz2 |
- Patch #266358 by Rob Loach, mfer: use array in drupal_add_css().
Diffstat (limited to 'modules/openid/openid.module')
-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 3af31b0d6..d02c60b23 100644 --- a/modules/openid/openid.module +++ b/modules/openid/openid.module @@ -75,7 +75,7 @@ function openid_user_insert(&$edit, &$account, $category = NULL) { */ function openid_form_alter(&$form, $form_state, $form_id) { if ($form_id == 'user_login_block' || $form_id == 'user_login') { - drupal_add_css(drupal_get_path('module', 'openid') . '/openid.css', 'module'); + drupal_add_css(drupal_get_path('module', 'openid') . '/openid.css'); drupal_add_js(drupal_get_path('module', 'openid') . '/openid.js'); if (!empty($form_state['post']['openid_identifier'])) { $form['name']['#required'] = FALSE; |