Subject: | SSL parameter is not supported |
The captcha_get method does not support the third parameter to run
recaptcha over SSL.
If we say that the SSL option also should be settable by config, the
method could be changed to the following:
sub captcha_get : Private {
my ($self, $c) = @_;
my $cap = Captcha::reCAPTCHA->new;
$c->stash->{recaptcha} =
$cap->get_html(
$c->config->{recaptcha}->{pub_key},
undef,
$c->config->{recaptcha}->{use_ssl});
return;
}