Summary:
Missing Language string + always failed captcha validation : (both Resolution include)
Detailed Description:
1 : missing language string in CGBetteForms/lang/en_US.php
$lang['err_input_htmldetected']
2 : captcha always failed ( tested with Captcha 0.0.5, method HN )
no way to send any message.
CGBetteForms/lib/class.CaptchaModuleProvider.php
line 32 :
if( $mod->NeedsInputField() ) $input =
\cge_param::get_string($_REQUEST,'cgbf_captcha');
replace by
if( $mod->NeedsInputField() ) $input =
\cge_param::get_string($_REQUEST,'cgbf_input_captcha');
then it works for me.