You are here

function blockcache_alter_comment_insert in Block Cache Alter 7

Implementation of hook_comment_insert().

File

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

Code

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