diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-08-23 01:05:12 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-08-23 01:05:12 +0000 |
commit | e6eb489918ed6e217038faf4e45ed510c64596fd (patch) | |
tree | 8c009120aa4ba7f65de06d2a2569fc2a4cf41b1f /modules/taxonomy/taxonomy.module | |
parent | a8cc3e30c374e64d1bff2fda233190fd05c9a0ee (diff) | |
download | brdo-e6eb489918ed6e217038faf4e45ed510c64596fd.tar.gz brdo-e6eb489918ed6e217038faf4e45ed510c64596fd.tar.bz2 |
#542658 follow-up by sun: Move action 'tabs' out of local tasks and into local actions.
Diffstat (limited to 'modules/taxonomy/taxonomy.module')
-rw-r--r-- | modules/taxonomy/taxonomy.module | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/taxonomy/taxonomy.module b/modules/taxonomy/taxonomy.module index 254013eb8..f2cfa376e 100644 --- a/modules/taxonomy/taxonomy.module +++ b/modules/taxonomy/taxonomy.module @@ -209,7 +209,7 @@ function taxonomy_menu() { 'page callback' => 'drupal_get_form', 'page arguments' => array('taxonomy_form_vocabulary'), 'access arguments' => array('administer taxonomy'), - 'type' => MENU_LOCAL_TASK, + 'type' => MENU_LOCAL_ACTION, ); $items['taxonomy/term/%taxonomy_term'] = array( @@ -283,12 +283,12 @@ function taxonomy_menu() { 'weight' => -10, ); - $items['admin/structure/taxonomy/%taxonomy_vocabulary/add'] = array( + $items['admin/structure/taxonomy/%taxonomy_vocabulary/list/add'] = array( 'title' => 'Add term', 'page callback' => 'drupal_get_form', 'page arguments' => array('taxonomy_form_term', 3), 'access arguments' => array('administer taxonomy'), - 'type' => MENU_LOCAL_TASK, + 'type' => MENU_LOCAL_ACTION, ); return $items; |