From a697ccdb79f5f543b2125c73336fa85a1f7ee4d5 Mon Sep 17 00:00:00 2001 From: webchick Date: Sun, 11 Mar 2012 11:37:30 -0700 Subject: Issue #1476812 by droplet: Fixed hooks file_field_delete_file() takes only 2 arguments. --- modules/field/field.api.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'modules/field/field.api.php') diff --git a/modules/field/field.api.php b/modules/field/field.api.php index 5a88204af..774d8b55e 100644 --- a/modules/field/field.api.php +++ b/modules/field/field.api.php @@ -567,7 +567,7 @@ function hook_field_delete($entity_type, $entity, $field, $instance, $langcode, // be counted in hook_file_references(). $item['file_field_type'] = $entity_type; $item['file_field_id'] = $id; - file_field_delete_file($item, $field); + file_field_delete_file($item, $field, $entity_type, $id); } } @@ -592,10 +592,11 @@ function hook_field_delete($entity_type, $entity, $field, $instance, $langcode, * $entity->{$field['field_name']}[$langcode], or an empty array if unset. */ function hook_field_delete_revision($entity_type, $entity, $field, $instance, $langcode, &$items) { + list($id, $vid, $bundle) = entity_extract_ids($entity_type, $entity); foreach ($items as $delta => $item) { // For hook_file_references, remember that this file is being deleted. $item['file_field_name'] = $field['field_name']; - if (file_field_delete_file($item, $field)) { + if (file_field_delete_file($item, $field, $entity_type, $id)) { $items[$delta] = NULL; } } -- cgit v1.2.3