Fix URLs to reflect change in reCAPTCHA API

This commit is contained in:
Zach Copley 2011-04-27 19:40:43 +00:00
parent 0df111025f
commit bfc3cc9461
1 changed files with 2 additions and 2 deletions

View File

@ -71,9 +71,9 @@ class RecaptchaPlugin extends Plugin
if (isset($action->recaptchaPluginNeedsOutput) && $action->recaptchaPluginNeedsOutput) {
// Load the AJAX API
if (StatusNet::isHTTPS()) {
$url = "https://api-secure.recaptcha.net/js/recaptcha_ajax.js";
$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);