Implements hook_update_dependencies().

File

modules/image/image.install, line 166
Install, update and uninstall functions for the image module.

Code

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;
}