From: Michael Tremer Date: Wed, 19 Feb 2014 19:47:54 +0000 (+0100) Subject: Merge remote-tracking branch 'alfh/bugfix_menu_touch' into next X-Git-Url: http://git.ipfire.org/?p=people%2Fteissler%2Fipfire-2.x.git;a=commitdiff_plain;h=3fb3a3b02188ac7e74bbbb882083f6aeba1923f0;hp=1271a8b45eb8ed3970beabba33fd4b0519db3565 Merge remote-tracking branch 'alfh/bugfix_menu_touch' into next --- diff --git a/html/html/themes/ipfire/include/functions.pl b/html/html/themes/ipfire/include/functions.pl index 44ed9b758..f4c241a55 100644 --- a/html/html/themes/ipfire/include/functions.pl +++ b/html/html/themes/ipfire/include/functions.pl @@ -80,7 +80,7 @@ EOF foreach my $k1 ( sort keys %$menu ) { $link = getlink($menu->{$k1}); next if (!is_menu_visible($link) or $link eq ''); - print '
  • '.$menu->{$k1}->{'caption'}.''; + print '
  • '.$menu->{$k1}->{'caption'}.''; my $submenus = $menu->{$k1}->{'subMenu'}; &showsubmenu($submenus) if ($submenus); print "
  • ";