diff options
author | Bharat Mediratta <bharat@menalto.com> | 2012-10-08 13:50:33 -0700 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2012-10-08 13:50:33 -0700 |
commit | 8855847df26cc431a1ff74e0edcc2c370b8f94f6 (patch) | |
tree | 040e9492373fb850937d59e2f764738301cd5d18 | |
parent | 71a67ebb9f685c4f7347c9a9744e3267bd2aa4f9 (diff) |
Fix the recaptcha signup url. Fixes #1888.
-rw-r--r-- | modules/recaptcha/helpers/recaptcha.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/recaptcha/helpers/recaptcha.php b/modules/recaptcha/helpers/recaptcha.php index 9c954049..57f8cf36 100644 --- a/modules/recaptcha/helpers/recaptcha.php +++ b/modules/recaptcha/helpers/recaptcha.php @@ -37,7 +37,7 @@ class recaptcha_Core { $group->submit("")->value(t("Save")); $site_domain = urlencode(stripslashes($_SERVER["HTTP_HOST"])); - $form->get_key_url = "http://recaptcha.net/api/getkey?domain=$site_domain&app=Gallery3"; + $form->get_key_url = "http://www.google.com/recaptcha/admin/create?domains=$site_domain&app=Gallery3"; return $form; } |