From efdd76ad3db1407def398bb1c5aaab3876fec212 Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Sun, 5 Jun 2005 09:47:13 +0000 Subject: - Patch #22416: fixed typo that prevented menu item descriptions from showing up in links. --- includes/menu.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'includes') diff --git a/includes/menu.inc b/includes/menu.inc index 0984d2fe9..cf8a7c007 100644 --- a/includes/menu.inc +++ b/includes/menu.inc @@ -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()); } /** -- cgit v1.2.3