You are here

function antispam_comment_delete in AntiSpam 7

Implements hook_comment_delete().

File

./antispam.module, line 1071
Primary hook implementations for the Antispam module.

Code

function antispam_comment_delete($comment) {
  db_delete('antispam_spam_marks')
    ->condition('content_type', 'comment')
    ->condition('content_id', $comment->cid)
    ->execute();
}