function revision_scheduler_operation_delete in Revision scheduler 7
Delete a scheduled revision operation from the database.
Parameters
int $id: A scheduled operation ID.
See also
revision_scheduler_operation_delete_multiple()
1 call to revision_scheduler_operation_delete()
File
- ./
revision_scheduler.module, line 531
Code
function revision_scheduler_operation_delete($id) {
return revision_scheduler_operation_delete_multiple(array(
$id,
));
}