function hosting_alias_node_update in Hosting 7.4
Same name and namespace in other branches
- 7.3 alias/hosting_alias.module \hosting_alias_node_update()
Implements hook_node_update().
File
- alias/
hosting_alias.module, line 363 - 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);
}
}