Update for ReCaptcha

Added ,

> 'ssl' => 'true'

to ensure ReCaptcha works on SSL. Otherwise it's blocked due to having mixed content.
This commit is contained in:
M. Omer Golgeli 2015-04-17 23:25:40 +03:00
parent a286597826
commit 70be1493dc
1 changed files with 2 additions and 1 deletions

View File

@ -87,7 +87,8 @@ class Application_Form_Login extends Zend_Form
'captcha' => 'ReCaptcha',
'captchaOptions' => array(
'captcha' => 'ReCaptcha',
'service' => $recaptcha
'service' => $recaptcha,
'ssl' => 'true'
)
)
);