- Patch #164330 by Crell et al: restore menu classes.

6.x
Dries Buytaert 2007-09-26 18:14:05 +00:00
parent a0a97f2f14
commit 0351f4ca5d
1 changed files with 4 additions and 2 deletions

View File

@ -1050,7 +1050,9 @@ function menu_navigation_links($menu_name, $level = 0) {
$l = $item['link']['options']; $l = $item['link']['options'];
$l['href'] = $item['link']['href']; $l['href'] = $item['link']['href'];
$l['title'] = $item['link']['title']; $l['title'] = $item['link']['title'];
$links[] = $l; $l['attributes']['id'] = $item['link']['mlid'];
// Keyed with unique menu id to generate classes from theme_links().
$links['menu-'. $item['link']['mlid']] = $l;
} }
} }
return $links; return $links;
@ -1273,7 +1275,7 @@ function menu_set_active_trail($new_trail = NULL) {
if ($item['tab_parent']) { if ($item['tab_parent']) {
// The title of a local task is used for the tab, never the page title. // The title of a local task is used for the tab, never the page title.
// Thus, replace it with the item corresponding to the root path to get // Thus, replace it with the item corresponding to the root path to get
// the relevant href and title. For example, the menu item corresponding // the relevant href and title. For example, the menu item corresponding
// to 'admin' is used when on the 'By module' tab at 'admin/by-module'. // to 'admin' is used when on the 'By module' tab at 'admin/by-module'.
$parts = explode('/', $item['tab_root']); $parts = explode('/', $item['tab_root']);
$args = arg(); $args = arg();