comment_admin_overview_validate

Definition

comment_admin_overview_validate($form, &$form_state)
drupal/modules/comment/comment.admin.inc, line 107

Description

Validate comment_admin_overview form submissions.

Code

function comment_admin_overview_validate($form, &$form_state) {
  $form_state['values']['comments'] = array_diff($form_state['values']['comments'], array(0));
  // We can't execute any 'Update options' if no comments were selected.
  if (count($form_state['values']['comments']) == 0) {
    form_set_error('', t('Please select one or more comments to perform the update on.'));
    drupal_goto('admin/content/comment');
  }
}