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/forum/forum.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/forum/forum.module')
-rw-r--r-- | modules/forum/forum.module | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/forum/forum.module b/modules/forum/forum.module index c6816ac80..c9cf6e339 100644 --- a/modules/forum/forum.module +++ b/modules/forum/forum.module @@ -105,7 +105,7 @@ function forum_menu() { 'page callback' => 'forum_form_main', 'page arguments' => array('container'), 'access arguments' => array('administer forums'), - 'type' => MENU_LOCAL_TASK, + 'type' => MENU_LOCAL_ACTION, 'parent' => 'admin/structure/forum', ); $items['admin/structure/forum/add/forum'] = array( @@ -113,7 +113,7 @@ function forum_menu() { 'page callback' => 'forum_form_main', 'page arguments' => array('forum'), 'access arguments' => array('administer forums'), - 'type' => MENU_LOCAL_TASK, + 'type' => MENU_LOCAL_ACTION, 'parent' => 'admin/structure/forum', ); $items['admin/structure/forum/settings'] = array( |