diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-08-22 14:34:23 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-08-22 14:34:23 +0000 |
commit | 36ec18969549ff173b45ae35577e035c2c19f641 (patch) | |
tree | 8a73f48534a188f946e6edf5ecad90f837ce3d84 /modules/openid | |
parent | 73a72337bb4c296211c5cb728b027ad0fefa85ed (diff) | |
download | brdo-36ec18969549ff173b45ae35577e035c2c19f641.tar.gz brdo-36ec18969549ff173b45ae35577e035c2c19f641.tar.bz2 |
#326539 by JohnAlbin, sun, cha0s, ultimateboy, Rob Loach, Damien Tournoud: Convert 'class' attribute to use an array, not a string.
Diffstat (limited to 'modules/openid')
-rw-r--r-- | modules/openid/openid.module | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/openid/openid.module b/modules/openid/openid.module index 787e23bca..842606d7d 100644 --- a/modules/openid/openid.module +++ b/modules/openid/openid.module @@ -96,11 +96,11 @@ function _openid_user_login_form_alter(&$form, &$form_state) { $items = array(); $items[] = array( 'data' => l(t('Log in using OpenID'), '#'), - 'class' => 'openid-link', + 'class' => array('openid-link'), ); $items[] = array( 'data' => l(t('Cancel OpenID login'), '#'), - 'class' => 'user-link', + 'class' => array('user-link'), ); $form['openid_links'] = array( |