comment_admin_overview_validate

Versions
4.7
comment_admin_overview_validate($form_id, $edit)
5
comment_admin_overview_validate($form_id, $form_values)
6 – 7
comment_admin_overview_validate($form, &$form_state)

Validate comment_admin_overview form submissions.

We can't execute any 'Update options' if no comments were selected.

Code

modules/comment/comment.admin.inc, line 82

<?php
function comment_admin_overview_validate($form, &$form_state) {
  $form_state['values']['comments'] = array_diff($form_state['values']['comments'], array(0));
  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');
  }
}
?>
Login or register to post comments
 
 

All source code and documentation on this site is released under the terms of the GNU General Public License, version 2 and later. Drupal is a registered trademark of Dries Buytaert.