You are here

function hosting_node_presave in Hosting 7.4

Same name and namespace in other branches
  1. 7.3 hosting.module \hosting_node_presave()

Implements hook_node_presave().

See also

hook_nodeapi_TYPE_OP()

File

./hosting.module, line 346
Hosting module.

Code

function hosting_node_presave($node) {

  // Redispatch through our custom nodeapi implementation.
  hosting_nodeapi($node, 'presave');
}