diff options
Diffstat (limited to 'modules/taxonomy')
-rw-r--r-- | modules/taxonomy/taxonomy.install | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/modules/taxonomy/taxonomy.install b/modules/taxonomy/taxonomy.install index d84797fcb..1a98b0d75 100644 --- a/modules/taxonomy/taxonomy.install +++ b/modules/taxonomy/taxonomy.install @@ -215,6 +215,9 @@ function taxonomy_update_dependencies() { $dependencies['taxonomy'][7002] = array( 'system' => 7049, ); + $dependencies['user'][7006] = array( + 'taxonomy' => 7002, + ); $dependencies['system'][7050] = array( 'taxonomy' => 7002, ); @@ -222,6 +225,7 @@ function taxonomy_update_dependencies() { $dependencies['node'][7006] = array( 'taxonomy' => 7002, ); + return $dependencies; } |