function image_field_delete_revision in Drupal 7
Implements hook_field_delete_revision().
File
- modules/
image/ image.field.inc, line 270 - Implement an image field, based on the file module's file field.
Code
function image_field_delete_revision($entity_type, $entity, $field, $instance, $langcode, &$items) {
file_field_delete_revision($entity_type, $entity, $field, $instance, $langcode, $items);
}