aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/captcha/plugins/phpbb_recaptcha_plugin.php
diff options
context:
space:
mode:
authorErik Frèrejean <erikfrerejean@phpbb.com>2011-05-10 23:31:41 +0200
committerErik Frèrejean <erikfrerejean@phpbb.com>2011-05-10 23:31:41 +0200
commitca981b6d1819560f7722773796ac33407f18cde8 (patch)
tree74d4803e2339c7e9de4cfd25259f94d388dc8e76 /phpBB/includes/captcha/plugins/phpbb_recaptcha_plugin.php
parent8a97722464c1aa99f56c71abebc68b9565fdd29d (diff)
downloadforums-ca981b6d1819560f7722773796ac33407f18cde8.tar
forums-ca981b6d1819560f7722773796ac33407f18cde8.tar.gz
forums-ca981b6d1819560f7722773796ac33407f18cde8.tar.bz2
forums-ca981b6d1819560f7722773796ac33407f18cde8.tar.xz
forums-ca981b6d1819560f7722773796ac33407f18cde8.zip
[ticket/10170] reCaptcha API has been moved.
The reCaptcha API has been moved from recaptcha.net to google.com/recaptcha. PHPBB3-10170
Diffstat (limited to 'phpBB/includes/captcha/plugins/phpbb_recaptcha_plugin.php')
-rw-r--r--phpBB/includes/captcha/plugins/phpbb_recaptcha_plugin.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/includes/captcha/plugins/phpbb_recaptcha_plugin.php b/phpBB/includes/captcha/plugins/phpbb_recaptcha_plugin.php
index ea171dbe2c..f3bc1a859f 100644
--- a/phpBB/includes/captcha/plugins/phpbb_recaptcha_plugin.php
+++ b/phpBB/includes/captcha/plugins/phpbb_recaptcha_plugin.php
@@ -27,9 +27,9 @@ if (!class_exists('phpbb_default_captcha'))
*/
class phpbb_recaptcha extends phpbb_default_captcha
{
- var $recaptcha_server = 'http://api.recaptcha.net';
- var $recaptcha_server_secure = 'https://api-secure.recaptcha.net'; // class constants :(
- var $recaptcha_verify_server = 'api-verify.recaptcha.net';
+ var $recaptcha_server = 'http://www.google.com/recaptcha/api';
+ var $recaptcha_server_secure = 'https://www.google.com/recaptcha/api'; // class constants :(
+ var $recaptcha_verify_server = 'http://www.google.com/recaptcha/api/verify';
var $challenge;
var $response;