We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 02ab707 commit 9b56b72Copy full SHA for 9b56b72
interface/web/tools/lib/module.conf.php
@@ -14,7 +14,8 @@
14
15
$items[] = array( 'title' => 'Password and Language',
16
'target' => 'content',
17
- 'link' => 'tools/user_settings.php');
+ 'link' => 'tools/user_settings.php',
18
+ 'html_id'=> 'user_settings');
19
20
21
$module['nav'][] = array( 'title' => 'User Settings',
@@ -23,10 +24,10 @@
23
24
25
26
$menu_dir = ISPC_WEB_PATH.'/tools/lib/menu.d';
-
27
+
28
if (is_dir($menu_dir)) {
29
if ($dh = opendir($menu_dir)) {
- //** Go trough all files in the menu dir
30
+ //** Go through all files in the menu dir
31
while (($file = readdir($dh)) !== false) {
32
if($file != '.' && $file != '..' && substr($file,-9,9) == '.menu.php') {
33
include_once($menu_dir.'/'.$file);
0 commit comments