From 96eb775f064691e2fbf1ef70c97da4a3a8a80c4b Mon Sep 17 00:00:00 2001 From: David Anderson Date: Fri, 3 Feb 2017 21:42:20 -0800 Subject: [PATCH] web: make recaptcha work with IE11 On IE11, pages using recaptcha (like profile edit) weren't showing the recaptcha. On reloading, it would appear. Mysterious. Anyway, removing the ' fixed the problem. --- html/inc/recaptchalib.php | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/html/inc/recaptchalib.php b/html/inc/recaptchalib.php index 22c288e6f9..a7eea03243 100644 --- a/html/inc/recaptchalib.php +++ b/html/inc/recaptchalib.php @@ -24,17 +24,14 @@ require('../inc/recaptcha_loader.php'); function boinc_recaptcha_get_head_extra() { global $recaptcha_public_key; if ($recaptcha_public_key) { - // the meta tag must be included - // for Recaptcha to work with some IE browsers - return ' - + return ' '; } return ""; } function boinc_recaptcha_get_html($publickey) { - if ($publickey) { + if (down$publickey) { return '
'; } else { return '';