You are here

function plus1_comment_delete in Plus 1 7

Implements gook_comment_delete().

File

./plus1.module, line 456

Code

function plus1_comment_delete($comment) {
  $criteria['entity_id'] = $comment->cid;
  $criteria['entity_type'] = 'comment';
  $votes = votingapi_select_votes($criteria);
  votingapi_delete_votes($votes);
}