From 675a1307879692d830cc0ba68fd77dcf1fcdcdaa Mon Sep 17 00:00:00 2001 From: Matthias Jentsch Date: Fri, 21 Aug 2015 16:04:04 +0200 Subject: [PATCH] Fix active configuration/application menu highlighting Fix a bug that caused the application config to not be set to active when navigating through history. refs #9761 --- library/Icinga/Web/Menu.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/Icinga/Web/Menu.php b/library/Icinga/Web/Menu.php index 7124a4776..466391e4b 100644 --- a/library/Icinga/Web/Menu.php +++ b/library/Icinga/Web/Menu.php @@ -271,7 +271,7 @@ class Menu implements RecursiveIterator 'priority' => 800 )); $section->add(t('Application'), array( - 'url' => 'config', + 'url' => 'config/general', 'permission' => 'config/application/*', 'priority' => 810 ));