summaryrefslogtreecommitdiff
path: root/modules/openid
diff options
context:
space:
mode:
authorwebchick <webchick@24967.no-reply.drupal.org>2012-09-01 22:31:19 -0700
committerwebchick <webchick@24967.no-reply.drupal.org>2012-09-01 22:31:19 -0700
commitb85f3a02b050fc4494d56e022c0a809c4dc24248 (patch)
tree30277b64ab2a8ba159acc5f7312f845d674fd326 /modules/openid
parent76acfb9b16f808f9fadf4e12359e225637cbaa77 (diff)
downloadbrdo-b85f3a02b050fc4494d56e022c0a809c4dc24248.tar.gz
brdo-b85f3a02b050fc4494d56e022c0a809c4dc24248.tar.bz2
Issue #1473214 by kika, nmudgal, roborn: Fixed Empty table pattern for 'OpenID identities' user page.
Diffstat (limited to 'modules/openid')
-rw-r--r--modules/openid/openid.pages.inc1
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/openid/openid.pages.inc b/modules/openid/openid.pages.inc
index 6e3f096e4..8a52f2040 100644
--- a/modules/openid/openid.pages.inc
+++ b/modules/openid/openid.pages.inc
@@ -56,6 +56,7 @@ function openid_user_identities($account) {
'#theme' => 'table',
'#header' => $header,
'#rows' => $rows,
+ '#empty' => t('No OpenID identities available for this account.'),
);
$build['openid_user_add'] = drupal_get_form('openid_user_add');
return $build;