You are here

function blockcache_alter_comment_delete in Block Cache Alter 7

Implementation of hook_comment_delete().

File

./blockcache_alter.module, line 395
Block cache alter module.

Code

function blockcache_alter_comment_delete($comment) {
  $thiscnode = node_load($comment->nid);
  $nodetype = $thiscnode->type;
  _blockcache_alter_cleanup('comment', $nodetype);
  return;
}