function spam_reported_comments_overview_submit in Spam 5
Submit code for the spam_reported_comments_overview form/function
File
- ./
spam.module, line 2281
Code
function spam_reported_comments_overview_submit($form_id, $form_values) {
$operation = spam_reported_comment_operations($form_values['operation']);
if ($operation) {
foreach ($form_values['comments'] as $cid => $value) {
if ($value) {
$operation('comment', $cid);
}
}
drupal_set_message(t('Comments have been updated.'));
}
}