Skip Menu |

This queue is for tickets about the Catalyst-Controller-reCAPTCHA CPAN distribution.

Report information
The Basics
Id: 68302
Status: new
Priority: 0/
Queue: Catalyst-Controller-reCAPTCHA

People
Owner: Nobody in particular
Requestors: trond.haugen [...] start.no
Cc:
AdminCc:

Bug Information
Severity: Important
Broken in: (no value)
Fixed in: (no value)



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; }