From 2d420b46611682d250bb23032fcb5d0376fb6460 Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Wed, 27 Apr 2011 19:40:43 +0000 Subject: [PATCH] Fix URLs to reflect change in reCAPTCHA API --- plugins/Recaptcha/RecaptchaPlugin.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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); -- 2.39.2