You are here

function hosting_nodeapi_site_delete_revision in Hosting 6.2

Same name and namespace in other branches
  1. 5 site/hosting_site.module \hosting_nodeapi_site_delete_revision()
  2. 7.4 site/hosting_site.nodeapi.inc \hosting_nodeapi_site_delete_revision()
  3. 7.3 site/hosting_site.nodeapi.inc \hosting_nodeapi_site_delete_revision()

Implementation of hook_nodeapi_delete_revision().

File

site/hosting_site.nodeapi.inc, line 118
Site nodeapi implementations.

Code

function hosting_nodeapi_site_delete_revision(&$node) {
  db_query('DELETE FROM {hosting_site} WHERE vid = %d', $node->vid);
}