- Patch #22416: fixed typo that prevented menu item descriptions from showing up in links.

4.7.x
Dries Buytaert 2005-06-05 09:47:13 +00:00
parent 12ea785baf
commit efdd76ad3d
1 changed files with 1 additions and 1 deletions

View File

@ -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());
}
/**