[eluser]wwwrun[/eluser]
Hi, there is a major bug in:
[quote author="Lit_Tiger" date="1299257508"]
To check the answer from client
Code:
$resp = $this->recaptcha->recaptcha_check_answer (
$this->input->ip_address(),
$this->input->post('recaptcha_challenge_field', true),
$this->input->post('recaptcha_challenge_field', true)
);
[/quote]
Fixed version:
Code:
$resp = $this->recaptcha->recaptcha_check_answer(
$this->input->ip_address(),
$this->input->post('recaptcha_challenge_field', true),
$this->input->post('recaptcha_response_field', true)
);
Hope it saves some debugging time ^^
cheers