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 + )); } }