diff --git a/library/Icinga/Web/Menu.php b/library/Icinga/Web/Menu.php index 45dd2dd9c..a201b34fc 100644 --- a/library/Icinga/Web/Menu.php +++ b/library/Icinga/Web/Menu.php @@ -237,6 +237,10 @@ class Menu implements RecursiveIterator 'priority' => 700, 'renderer' => 'ProblemMenuItemRenderer' )); + $section->add(t('About'), array( + 'url' => 'about', + 'priority' => 701 + )); if (Logger::writesToFile()) { $section->add(t('Application Log'), array( 'url' => 'list/applicationlog', @@ -279,11 +283,6 @@ class Menu implements RecursiveIterator 'priority' => 990, 'renderer' => 'ForeignMenuItemRenderer' )); - - $this->add(t('About'), array( - 'url' => 'about', - 'priority' => 1000 - )); } }