summaryrefslogtreecommitdiff
path: root/modules/image
diff options
context:
space:
mode:
authorwebchick <webchick@24967.no-reply.drupal.org>2012-03-23 16:41:08 -0600
committerwebchick <webchick@24967.no-reply.drupal.org>2012-03-23 16:41:08 -0600
commite6c2e730a6ccd79134c2bf0ec3cb67f9107c40e0 (patch)
tree54cd48206ec322d38422504abd0cc8f34701d0ef /modules/image
parent97374340916d999846e76b57cec11787f80db65f (diff)
downloadbrdo-e6c2e730a6ccd79134c2bf0ec3cb67f9107c40e0.tar.gz
brdo-e6c2e730a6ccd79134c2bf0ec3cb67f9107c40e0.tar.bz2
Issue #1357072 by dkingofpa: Fixed Call to undefined function _update_7000_field_read_fields() in image.install during upgrade.
Diffstat (limited to 'modules/image')
-rw-r--r--modules/image/image.install12
1 files changed, 12 insertions, 0 deletions
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
@@ -154,6 +154,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.
*/
function image_update_7000() {