You are here

function expire_node_update in Cache Expiration 7

Same name and namespace in other branches
  1. 7.2 expire.module \expire_node_update()

Implements hook_node_update().

Acts on node updates.

File

./expire.module, line 127
Provides logic for page cache expiration

Code

function expire_node_update($node) {
  if (!empty($node->nid)) {
    expire_node($node);
  }
}