function blockcache_alter_comment_update in Block Cache Alter 7
Implementation of hook_comment_update().
File
- ./
blockcache_alter.module, line 385 - Block cache alter module.
Code
function blockcache_alter_comment_update($comment) {
$thiscnode = node_load($comment->nid);
$nodetype = $thiscnode->type;
_blockcache_alter_cleanup('comment', $nodetype);
return;
}