_daily_delete_revision($node)
daily/daily_container.inc, line 247
This is called from daily_nodeapi on a 'delete revision' event, as there is no normal hook.
Removes a single revision.
| Name | Description |
|---|---|
| Daily Container node type functions | All functions which define the node type Daily Container. |
<?php
function _daily_delete_revision($node) {
db_query("DELETE FROM {daily_container} WHERE vid = %d", $node->vid);
}
?>