From 715a2d655f70675f3bec8a320a864865d6d02d47 Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Wed, 29 Jul 2009 06:39:35 +0000 Subject: - Patch #511748 by moshe weitzman: pushing rending to later in the cycle so there is more room for customization. --- modules/openid/openid.pages.inc | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'modules/openid') 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; } -- cgit v1.2.3