diff options
author | Dries Buytaert <dries@buytaert.net> | 2009-07-29 06:39:35 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2009-07-29 06:39:35 +0000 |
commit | 715a2d655f70675f3bec8a320a864865d6d02d47 (patch) | |
tree | fffff07032e77f118a4290fc62f290d91cf831f0 /modules/openid | |
parent | 40c8986ac74b0ab15f0571c24052d1be06bd2ccb (diff) | |
download | brdo-715a2d655f70675f3bec8a320a864865d6d02d47.tar.gz brdo-715a2d655f70675f3bec8a320a864865d6d02d47.tar.bz2 |
- Patch #511748 by moshe weitzman: pushing rending to later in the cycle so there is more room for customization.
Diffstat (limited to 'modules/openid')
-rw-r--r-- | modules/openid/openid.pages.inc | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/modules/openid/openid.pages.inc b/modules/openid/openid.pages.inc index 789b026bb..d189ac982 100644 --- a/modules/openid/openid.pages.inc +++ b/modules/openid/openid.pages.inc @@ -53,7 +53,11 @@ function openid_user_identities($account) { $rows[] = array(check_plain($identity->authname), l(t('Delete'), 'user/' . $account->uid . '/openid/delete/' . $identity->aid)); } - $build['openid_table'] = array('#markup' => theme('table', $header, $rows)); + $build['openid_table'] = array( + '#theme' => 'table', + '#header' => $header, + '#rows' => $rows, + ); $build['openid_user_add'] = drupal_get_form('openid_user_add'); return $build; } |