Index: includes/menu.inc
===================================================================
RCS file: /cvs/drupal/drupal/includes/menu.inc,v
retrieving revision 1.249
diff -u -p -r1.249 menu.inc
--- includes/menu.inc	27 Jan 2008 17:43:23 -0000	1.249
+++ includes/menu.inc	27 Jan 2008 23:39:09 -0000
@@ -1262,7 +1262,7 @@ function menu_local_tasks($level = 0, $r
           if ($item['type'] == MENU_DEFAULT_LOCAL_TASK) {
             // Find the first parent which is not a default local task.
             for ($p = $item['tab_parent']; $tasks[$p]['type'] == MENU_DEFAULT_LOCAL_TASK; $p = $tasks[$p]['tab_parent']);
-            $link = theme('menu_item_link', array('title' => $item['title'], 'href' => $tasks[$p]['href']));
+            $link = theme('menu_item_link', array('href' => $tasks[$p]['href']) + $item);
             $tabs_current .= theme('menu_local_task', $link, TRUE);
             $next_path = $item['path'];
           }
@@ -1294,7 +1294,7 @@ function menu_local_tasks($level = 0, $r
           if ($item['type'] == MENU_DEFAULT_LOCAL_TASK) {
             // Find the first parent which is not a default local task.
             for ($p = $item['tab_parent']; $tasks[$p]['type'] == MENU_DEFAULT_LOCAL_TASK; $p = $tasks[$p]['tab_parent']);
-            $link = theme('menu_item_link', array('title' => $item['title'], 'href' => $tasks[$p]['href']));
+            $link = theme('menu_item_link', array('href' => $tasks[$p]['href']) + $item);
             if ($item['path'] == $router_item['path']) {
               $root_path = $tasks[$p]['path'];
             }
