You are here

function content_theme_node_update in Content Theme 7

Same name and namespace in other branches
  1. 7.2 content_theme.module \content_theme_node_update()

Implements hook_node_update().

File

./content_theme.module, line 297
This module allows to use different themes than the site default on content creating, editing, and viewing pages.

Code

function content_theme_node_update($node) {
  content_theme_node_delete($node);
  content_theme_node_insert($node);
}