You are here

function entitycache_comment_insert in Entity cache 7

Implements hook_comment_insert().

File

./entitycache.module, line 168
Allows for caching of core entities.

Code

function entitycache_comment_insert($comment) {
  cache_clear_all($comment->nid, 'cache_entity_node');
}