diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2008-10-13 00:33:05 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2008-10-13 00:33:05 +0000 |
commit | 8292bdd40ab3a9e70d44dad0e681d0222c1556cb (patch) | |
tree | 7e66d08bef9b38acd705e9e918129083435af3b8 /modules/openid | |
parent | 448640f1380c39ec3be39791d7efb449f150e1ed (diff) | |
download | brdo-8292bdd40ab3a9e70d44dad0e681d0222c1556cb.tar.gz brdo-8292bdd40ab3a9e70d44dad0e681d0222c1556cb.tar.bz2 |
Re-commit of #242873 by pwolanin and bjaspan: Make drupal_set_title() check_plain() by default.
Diffstat (limited to 'modules/openid')
-rw-r--r-- | modules/openid/openid.pages.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/openid/openid.pages.inc b/modules/openid/openid.pages.inc index 6d8ba2d60..efd7684ee 100644 --- a/modules/openid/openid.pages.inc +++ b/modules/openid/openid.pages.inc @@ -28,7 +28,7 @@ function openid_authentication_page() { * Menu callback; Manage OpenID identities for the specified user. */ function openid_user_identities($account) { - drupal_set_title(check_plain($account->name)); + drupal_set_title($account->name); drupal_add_css(drupal_get_path('module', 'openid') . '/openid.css', 'module'); // Check to see if we got a response |