Skip to content

Commit 840f395

Browse files
author
Marius Burkard
committed
- fixed module button display on dashlet if multiple modules have same order setting
1 parent c9abb2d commit 840f395

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

interface/web/dashboard/dashlets/modules.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ function show() {
4747
} else {
4848
if(strlen($module_title) > 8) $module_title = substr($module_title, 0, 7).'..';
4949
}
50-
$mod[$module['order']] = array( 'modules_title' => $module_title,
50+
$mod[$module['order'].'-'.$module['name']] = array( 'modules_title' => $module_title,
5151
'modules_startpage' => $module['startpage'],
5252
'modules_name' => $module['name']);
5353
}

0 commit comments

Comments
 (0)