diff options
author | Dries Buytaert <dries@buytaert.net> | 2007-01-31 21:26:56 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2007-01-31 21:26:56 +0000 |
commit | 489903a08e44f3f78347ec4602583a8defaaaa0a (patch) | |
tree | a889c422d48e0bb4081d93e6cad2ccc171764606 /modules/taxonomy/taxonomy.module | |
parent | 585fdfc9ab56bd3014a68a7845b7ac9ae003b39d (diff) | |
download | brdo-489903a08e44f3f78347ec4602583a8defaaaa0a.tar.gz brdo-489903a08e44f3f78347ec4602583a8defaaaa0a.tar.bz2 |
- Patch #113603 by chx: first crack at re-implementing tabs.
Diffstat (limited to 'modules/taxonomy/taxonomy.module')
-rw-r--r-- | modules/taxonomy/taxonomy.module | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/modules/taxonomy/taxonomy.module b/modules/taxonomy/taxonomy.module index ed05eb8bb..9eac0968e 100644 --- a/modules/taxonomy/taxonomy.module +++ b/modules/taxonomy/taxonomy.module @@ -88,6 +88,7 @@ function taxonomy_menu() { 'page callback' => 'drupal_get_form', 'page arguments' => array('taxonomy_form_vocabulary'), 'type' => MENU_LOCAL_TASK, + 'parent' => 'admin/content/taxonomy', ); $items['admin/content/taxonomy/edit/vocabulary/%'] = array( @@ -136,6 +137,7 @@ function taxonomy_menu() { 'page callback' => 'drupal_get_form', 'page arguments' => array('taxonomy_form_term', 3), 'type' => MENU_LOCAL_TASK, + 'parent' => 'admin/content/taxonomy/%', ); return $items; |