You are here

function discussthis_create_form_validate in Discuss This! 6

Same name and namespace in other branches
  1. 7.2 discussthis.module \discussthis_create_form_validate()
  2. 7 discussthis.module \discussthis_create_form_validate()

\brief Validate the comment the user just posted.

This function validates the entered data. The comment module expects a valid name, email address and URL.

\param[in] $form The form \param[in,out] $form_state The current state of the form

File

./discussthis.module, line 930
Associations discussions in forums with specific nodes

Code

function discussthis_create_form_validate($form, &$form_state) {
  comment_form_validate($form, $form_state);
}