Seems like i hve it all working (i see the captcha field in my form), but there is no check happening on the it. In my controller where the form gets submitted to, it always shows as true/blank
if (Input::method() == 'POST') { echo 'this is captcha: '.Captcha::forge('recaptcha')->check() == true ? 'This is true' : 'falze'; }
no matter what I enter in the input boxes.
Has anyone gotten this working correctly or do it still wrk with the current version of fuel?
I have added exceptions and the response comes back and succeeded and end up in the 'true' part of the check(), but then on the controller side where it's looking for this, it doesnt return anything seems to be empty. If i replace the 'return true' with 'return "Success";' the response shows 'Success' on the check().
Is there something in Fuel that handles booleans coming from a package differently or something?
thinking about it now that you say it makes sense. I guess i was thinking of this as a function of the same information on a single object, but within this method it does do the POST, so yes, it would fail the second time.