comment_unpublish_by_keyword_action_submit
Definition
comment_unpublish_by_keyword_action_submit($form, $form_state)
modules/comment/comment.module, line 2081
Description
Process comment_unpublish_by_keyword_action_form form submissions.
Code
<?php
function comment_unpublish_by_keyword_action_submit($form, $form_state) {
return array('keywords' => drupal_explode_tags($form_state['values']['keywords']));
}
?> 