You are here

function spam_reported_comments_overview_validate in Spam 5

Validation code for the spam_reported_comments_overview form/function

File

./spam.module, line 2270

Code

function spam_reported_comments_overview_validate($form_id, $form_values) {
  $form_values['comments'] = array_diff($form_values['comments'], array(
    0,
  ));
  if (count($form_values['comments']) == 0) {
    form_set_error('', t('Please select one or more comments to perform the update on.'));
    drupal_goto('admin/content/comment/list/spam');
  }
}