function taxonomy_update_dependencies

Implements hook_update_dependencies().

File

drupal/modules/taxonomy/taxonomy.install, line 253
Install, update and uninstall functions for the taxonomy module.

Code

function taxonomy_update_dependencies() {

  // taxonomy_update_7004() migrates taxonomy term data to fields and therefore
  // must run after all Field modules have been enabled, which happens in
  // system_update_7027().
  $dependencies['taxonomy'][7004] = array(
    'system' => 7027,
  );
  return $dependencies;
}