Dashboard: Respect original dashlet order

This commit is contained in:
Johannes Meyer 2015-10-01 17:34:45 +02:00
parent 0cc06d6af9
commit b63a956a38
1 changed files with 1 additions and 1 deletions

View File

@ -77,7 +77,7 @@ class Dashboard extends AbstractWidget
foreach ($navigation as $dashboardPane) {
/** @var DashboardPane $dashboardPane */
$pane = new Pane($dashboardPane->getLabel());
foreach ($dashboardPane->getDashlets() as $title => $url) {
foreach ($dashboardPane->getDashlets(false) as $title => $url) {
$pane->addDashlet($title, $url);
}