summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2009-07-11 00:58:52 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2009-07-11 00:58:52 +0000
commitfbfcee5cf704edfdc4cd750414f58e27235536e8 (patch)
tree4b6d33f16698c6a73b99cf2984a08251db280421 /modules
parent6a686533ab84769fa8fdcf1df67663cc4b3f11c3 (diff)
downloadbrdo-fbfcee5cf704edfdc4cd750414f58e27235536e8.tar.gz
brdo-fbfcee5cf704edfdc4cd750414f58e27235536e8.tar.bz2
#516172 by yched: Fix incorrect path in term bundles.
Diffstat (limited to 'modules')
-rw-r--r--modules/taxonomy/taxonomy.module4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/taxonomy/taxonomy.module b/modules/taxonomy/taxonomy.module
index 4c9b0988f..15feb2b49 100644
--- a/modules/taxonomy/taxonomy.module
+++ b/modules/taxonomy/taxonomy.module
@@ -39,8 +39,8 @@ function taxonomy_fieldable_info() {
$return['taxonomy_term']['bundles'][$vocabulary->machine_name] = array(
'label' => $vocabulary->name,
'admin' => array(
- 'path' => 'admin/content/taxonomy/%taxonomy_vocabulary',
- 'real path' => 'admin/content/taxonomy/' . $vocabulary->vid,
+ 'path' => 'admin/build/taxonomy/%taxonomy_vocabulary',
+ 'real path' => 'admin/build/taxonomy/' . $vocabulary->vid,
'bundle argument' => 3,
'access arguments' => array('administer taxonomy'),
),