From e6c2e730a6ccd79134c2bf0ec3cb67f9107c40e0 Mon Sep 17 00:00:00 2001 From: webchick Date: Fri, 23 Mar 2012 16:41:08 -0600 Subject: Issue #1357072 by dkingofpa: Fixed Call to undefined function _update_7000_field_read_fields() in image.install during upgrade. --- modules/image/image.install | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'modules') diff --git a/modules/image/image.install b/modules/image/image.install index 516555829..5595a335d 100644 --- a/modules/image/image.install +++ b/modules/image/image.install @@ -153,6 +153,18 @@ function image_field_schema($field) { ); } +/** + * Implements hook_update_dependencies(). + */ +function image_update_dependencies() { + $dependencies['image'][7002] = array( + // Image update 7002 uses field API functions, so must run after + // Field API has been enabled. + 'system' => 7020, + ); + return $dependencies; +} + /** * Install the schema for users upgrading from the contributed module. */ -- cgit v1.2.3