- Patch #64692 by psycotic: theme_menu_links() returning Array

5.x
Dries Buytaert 2006-05-21 09:18:47 +00:00
parent 4f078eb274
commit 29ba34deae
1 changed files with 1 additions and 1 deletions

View File

@ -922,7 +922,7 @@ function theme_menu_links($links) {
if (stristr($index, 'active')) {
$output .= ' class="active"';
}
$output .= ">$link</li>\n";
$output .= ">". l($link['#title'], $link['#href'], $link['#attributes'], $link['#query'], $link['#fragment']) ."</li>\n";
}
$output .= '</ul>';