You are here

function notifications_subscription_form_validate in Notifications 6.4

Same name and namespace in other branches
  1. 7 notifications.module \notifications_subscription_form_validate()

Main subscription form validate

1 string reference to 'notifications_subscription_form_validate'
notifications_subscription_base_form in ./notifications.pages.inc
Base subscription form. Present the main fields and check all values

File

./notifications.module, line 460
Notifications module

Code

function notifications_subscription_form_validate($form, &$form_state) {
  module_load_include('pages.inc', 'notifications');
  return notifications_subscription_base_form_validate($form, $form_state);
}