You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$form->addRecaptcha() shows reCaptcha, but not validate it. $form->addRecaptcha()->setMessage('Are you bot?'); triggers warning "Missing setRequired(TRUE | FALSE) on field 'recaptcha' in form 'xxxForm'" $form->addRecaptcha()->setRequired(FALSE)->setMessage('Are you bot?'); doesnt validate. $form->addRecaptcha()->setRequired(TRUE)->setMessage('Are you bot?'); doesnt show 'Are you bot?' but 'This field is required' if form is submited without checking reCaptcha.
The text was updated successfully, but these errors were encountered:
$form->addRecaptcha()
shows reCaptcha, but not validate it.$form->addRecaptcha()->setMessage('Are you bot?');
triggers warning "Missing setRequired(TRUE | FALSE) on field 'recaptcha' in form 'xxxForm'"$form->addRecaptcha()->setRequired(FALSE)->setMessage('Are you bot?');
doesnt validate.$form->addRecaptcha()->setRequired(TRUE)->setMessage('Are you bot?');
doesnt show 'Are you bot?' but 'This field is required' if form is submited without checking reCaptcha.The text was updated successfully, but these errors were encountered: