From 63c90a026ba3d5807725d4148308db2c4b7f5f83 Mon Sep 17 00:00:00 2001 From: Uwe Steinmann Date: Wed, 4 Dec 2019 19:31:02 +0100 Subject: [PATCH] menu item does not need a href if it has children --- views/bootstrap/class.Bootstrap.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/views/bootstrap/class.Bootstrap.php b/views/bootstrap/class.Bootstrap.php index ef4d5adc0..18fae8448 100644 --- a/views/bootstrap/class.Bootstrap.php +++ b/views/bootstrap/class.Bootstrap.php @@ -473,14 +473,14 @@ background-image: linear-gradient(to bottom, #882222, #111111);; foreach($menuitems as $menuitem) { if(!empty($menuitem['children'])) { echo "
  • \n"; - echo " ".getMLText($menuitem['label'])." \n"; + echo " ".getMLText($menuitem['label'])." \n"; echo " \n"; } else { - echo "
  • ".getMLText($menuitem['label'])."
  • "; + echo "
  • ".getMLText($menuitem['label'])."
  • "; } } } /* }}} */