function notify_comment_delete in Notify 7
Same name and namespace in other branches
- 8 notify.module \notify_comment_delete()
- 2.0.x notify.module \notify_comment_delete()
- 1.0.x notify.module \notify_comment_delete()
Implementation of hook_comment_delete().
Delete the unpublished comment in the queue when the comment itself is deleted.
File
- ./notify.module, line 298 
- Notify module sends e-mail digests of new content and comments.
Code
function notify_comment_delete($comment) {
  db_query('DELETE FROM {notify_unpublished_queue} WHERE cid = :cid', array(
    ':cid' => $comment->cid,
  ));
}