function spam_comment_admin in Spam 5.3
Menu callback; present an administrative spam comment listing.
1 string reference to 'spam_comment_admin'
- comment_spamapi in modules/
spam_comment.inc - Spam module _spamapi() hook.
File
- modules/
spam_comment.inc, line 297
Code
function spam_comment_admin() {
$edit = $_POST;
if ($edit['operation'] == 'delete' && $edit['comments']) {
return drupal_get_form('comment_multiple_delete_confirm');
}
else {
return drupal_get_form('spam_comment_admin_overview', arg(4));
}
}