You are here

function hosting_alias_node_update in Hosting 7.3

Same name and namespace in other branches
  1. 7.4 alias/hosting_alias.module \hosting_alias_node_update()

Implements hook_node_update().

File

alias/hosting_alias.module, line 340
Allow sites to have domain aliases that they can be accessed with.

Code

function hosting_alias_node_update($node) {
  if ($node->type == 'site') {
    hosting_alias_update($node);
  }
}