We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2df826d commit 0e14d73Copy full SHA for 0e14d73
2 files changed
interface/web/nav.php
@@ -74,7 +74,7 @@
74
$language = (isset($_SESSION['s']['user']['language']))?$_SESSION['s']['user']['language']:$conf['language'];
75
$app->load_language_file('web/'.$mt.'/lib/'.$language.'.lng');
76
$active = ($module['name'] == $_SESSION['s']['module']['name']) ? 1 : 0;
77
- $topnav[$module['order']] = array( 'title' => $app->lng($module['title']),
+ $topnav[$module['order'].'-'.$module['name']] = array( 'title' => $app->lng($module['title']),
78
'active' => $active,
79
'module' => $module['name']);
80
}
interface/web/vm/lib/module.conf.php
@@ -5,6 +5,7 @@
5
$module['template'] = 'module.tpl.htm';
6
$module['startpage'] = 'vm/openvz_vm_list.php';
7
$module['tab_width'] = '';
8
+$module['order'] = '50';
9
10
//**** Templates menu
11
$items = array();
0 commit comments