1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-15 22:26:32 +02:00

Merge pull request #3156 from prototech/ticket/13316

[ticket/13316] Ensure Recaptcha image uses https when necessary.
This commit is contained in:
Joas Schilling
2014-11-21 22:29:02 +01:00

View File

@ -26,8 +26,10 @@ class recaptcha extends captcha_abstract
var $challenge; var $challenge;
var $response; var $response;
// PHP4 Constructor /**
function phpbb_recaptcha() * Constructor
*/
public function __construct()
{ {
global $request; global $request;
$this->recaptcha_server = $request->is_secure() ? $this->recaptcha_server_secure : $this->recaptcha_server; $this->recaptcha_server = $request->is_secure() ? $this->recaptcha_server_secure : $this->recaptcha_server;