From 7a1863850406ac4dc4dece75c6035fad390eb7fd Mon Sep 17 00:00:00 2001 From: Thomas Gelf Date: Tue, 16 Jun 2015 11:48:40 +0200 Subject: [PATCH] Revert "Web/Menu: move "About" to config section" Has been fixed in current master. This reverts commit 56d67def0085676c0a5c16efe3af7436403ec7ef. --- library/Icinga/Web/Menu.php | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/library/Icinga/Web/Menu.php b/library/Icinga/Web/Menu.php index 5bf8f76d0..45dd2dd9c 100644 --- a/library/Icinga/Web/Menu.php +++ b/library/Icinga/Web/Menu.php @@ -264,10 +264,6 @@ class Menu implements RecursiveIterator 'permission' => 'config/modules', 'priority' => 890 )); - $section->add(t('About'), array( - 'url' => 'about', - 'priority' => 895 - )); $section = $this->add($auth->getUser()->getUsername(), array( 'icon' => 'user', @@ -283,6 +279,11 @@ class Menu implements RecursiveIterator 'priority' => 990, 'renderer' => 'ForeignMenuItemRenderer' )); + + $this->add(t('About'), array( + 'url' => 'about', + 'priority' => 1000 + )); } }