- Patch #22416: fixed typo that prevented menu item descriptions from showing up in links.
parent
12ea785baf
commit
efdd76ad3d
|
@ -604,7 +604,7 @@ function theme_menu_item($mid, $children = '', $leaf = TRUE) {
|
|||
* @ingroup themeable
|
||||
*/
|
||||
function theme_menu_item_link($item, $link_item) {
|
||||
return l($item['title'], $link_item['path'], array_key_exists('description', $item) ? array('title' => $items['description']) : array());
|
||||
return l($item['title'], $link_item['path'], array_key_exists('description', $item) ? array('title' => $item['description']) : array());
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue