From: Zach Copley Date: Wed, 27 Apr 2011 19:40:43 +0000 (+0000) Subject: Fix URLs to reflect change in reCAPTCHA API X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=2d420b46611682d250bb23032fcb5d0376fb6460;p=quix0rs-gnu-social.git Fix URLs to reflect change in reCAPTCHA API --- diff --git a/plugins/Recaptcha/RecaptchaPlugin.php b/plugins/Recaptcha/RecaptchaPlugin.php index 0c46a33e0b..4e28e850cc 100644 --- a/plugins/Recaptcha/RecaptchaPlugin.php +++ b/plugins/Recaptcha/RecaptchaPlugin.php @@ -77,10 +77,10 @@ class RecaptchaPlugin extends Plugin { if (isset($action->recaptchaPluginNeedsOutput) && $action->recaptchaPluginNeedsOutput) { // Load the AJAX API - if ($this->checkssl()) { - $url = "https://api-secure.recaptcha.net/js/recaptcha_ajax.js"; + if (StatusNet::isHTTPS()) { + $url = "https://www.google.com/recaptcha/api/js/recaptcha_ajax.js"; } else { - $url = "http://api.recaptcha.net/js/recaptcha_ajax.js"; + $url = "http://www.google.com/recaptcha/api/js/recaptcha_ajax.js"; } $action->script($url);