summaryrefslogtreecommitdiff
path: root/actions/openidlogin.php
diff options
context:
space:
mode:
Diffstat (limited to 'actions/openidlogin.php')
-rw-r--r--actions/openidlogin.php7
1 files changed, 6 insertions, 1 deletions
diff --git a/actions/openidlogin.php b/actions/openidlogin.php
index a9fbf7a26..5d0537998 100644
--- a/actions/openidlogin.php
+++ b/actions/openidlogin.php
@@ -113,7 +113,12 @@ class OpenidloginAction extends Action {
$form_id = 'openid_message';
$form_html = $auth_request->formMarkup($trust_root, $process_url,
false, array('id' => $form_id));
-
+
+ # XXX: This is cheap, but things choke if we don't escape ampersands
+ # in the HTML attributes
+
+ $form_html = preg_replace('/&/', '&', $form_html);
+
// Display an error if the form markup couldn't be generated;
// otherwise, render the HTML.
if (Auth_OpenID::isFailure($form_html)) {