diff options
| -rw-r--r-- | library/WT/Theme/Colors.php | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/library/WT/Theme/Colors.php b/library/WT/Theme/Colors.php index 8674285349..a5bee0a070 100644 --- a/library/WT/Theme/Colors.php +++ b/library/WT/Theme/Colors.php @@ -118,10 +118,16 @@ class Colors extends Clouds { * @return WT_Menu[] */ protected function secondaryMenu() { - $menubar = parent::secondaryMenu(); - $menubar[] = $this->menuPalette(); - - return $menubar; + return array_filter(array( + $this->menuPendingChanges(), + $this->menuMyPages(), + $this->menuFavorites(), + $this->menuThemes(), + $this->menuPalette(), + $this->menuLanguages(), + $this->menuLogin(), + $this->menuLogout(), + )); } /** |
