You are here

function entitycache_comment_delete in Entity cache 7

Implements hook_comment_update().

File

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

Code

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