mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 06:08:52 +00:00
[ticket/10170] reCaptcha API has been moved.
The reCaptcha API has been moved from recaptcha.net to google.com/recaptcha. PHPBB3-10170
This commit is contained in:
parent
8a97722464
commit
ca981b6d18
1 changed files with 3 additions and 3 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue