diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-08-22 19:58:28 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-08-22 19:58:28 +0000 |
commit | a2694498f141f24ba4860f73a2c3ec238f65eab0 (patch) | |
tree | e0b63f70d10fc492ad02a40666a350e7bd184813 /modules/menu/menu.module | |
parent | d71ffc5aba6ee0e40ded64906b3bc430b7428e4f (diff) | |
download | brdo-a2694498f141f24ba4860f73a2c3ec238f65eab0.tar.gz brdo-a2694498f141f24ba4860f73a2c3ec238f65eab0.tar.bz2 |
#542658 by Gábor Hojtsy, sun, pwolanin: Move action 'tabs' out of local tasks.
Diffstat (limited to 'modules/menu/menu.module')
-rw-r--r-- | modules/menu/menu.module | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/menu/menu.module b/modules/menu/menu.module index 3bab4280c..beb29590b 100644 --- a/modules/menu/menu.module +++ b/modules/menu/menu.module @@ -65,7 +65,7 @@ function menu_menu() { 'page callback' => 'drupal_get_form', 'page arguments' => array('menu_edit_menu', 'add'), 'access arguments' => array('administer menu'), - 'type' => MENU_LOCAL_TASK, + 'type' => MENU_LOCAL_ACTION, ); $items['admin/structure/menu/settings'] = array( 'title' => 'Settings', @@ -94,7 +94,7 @@ function menu_menu() { 'page callback' => 'drupal_get_form', 'page arguments' => array('menu_edit_item', 'add', NULL, 3), 'access arguments' => array('administer menu'), - 'type' => MENU_LOCAL_TASK, + 'type' => MENU_LOCAL_ACTION, ); $items['admin/structure/menu-customize/%menu/edit'] = array( 'title' => 'Edit menu', |