diff --git a/application/controllers/DashboardsController.php b/application/controllers/DashboardsController.php index bac7c1452..ed30a06a3 100644 --- a/application/controllers/DashboardsController.php +++ b/application/controllers/DashboardsController.php @@ -46,7 +46,9 @@ class DashboardsController extends CompatController public function indexAction() { $pane = $this->getParam('pane'); - $this->dashboard->load(DashboardHome::DEFAULT_HOME, $pane); + + // If we don't load all dashboard homes here, the cog icon won't be rendered in the dashboard tabs + $this->dashboard->load(DashboardHome::DEFAULT_HOME, $pane, true); $activeHome = $this->dashboard->getActiveHome(); if (! $activeHome || ! $activeHome->hasEntries()) {