You are here

function mb_user_cancel_validate in More Buttons 7

Implements hook_form_validate().

Handle the "Cancel" button validation.

1 string reference to 'mb_user_cancel_validate'
mb_user_form_alter in mb_user/mb_user.module
Implements hook_form_alter().

File

mb_user/mb_user.module, line 179
Provides additional buttons for content in user context.

Code

function mb_user_cancel_validate($form, &$form_state) {

  // This is the cancel action. No validation required.
  mb_user_cancel_action($form, $form_state);
}