You are here

function _botcha_form_validate in BOTCHA Spam Prevention 7

Same name and namespace in other branches
  1. 6 botcha.botcha.inc \_botcha_form_validate()
  2. 6.2 botcha.module \_botcha_form_validate()
  3. 7.2 botcha.module \_botcha_form_validate()

Custom form validation - jump to __botcha_form_validate(). FIXME: Is there a standard way to put #validate handlers in a separate file?

1 string reference to '_botcha_form_validate'
botcha_form_alter_botcha in ./botcha.botcha.inc
Main BOTCHA worker - process the form and apply BOTCHA protection

File

./botcha.module, line 311
BOTCHA - Spam Prevention It modifies forms by adding various botcha's.

Code

function _botcha_form_validate($form, &$form_state) {
  module_load_include('inc', 'botcha', 'botcha.botcha');
  __botcha_form_validate($form, $form_state);
}