Skip to content

Commit 6b8c4bd

Browse files
committed
Updated doc
1 parent 87a5482 commit 6b8c4bd

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

src/doc/inc/menu.php

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -23,22 +23,22 @@ function &find_menu_item($id, &$menu = null)
2323
}
2424
}
2525

26-
return $result;
26+
return $result;
2727
}
2828

2929
function def_menu_item($parent, $id, $text, $file = null)
3030
{
3131
global $MENU;
3232

3333
$item = array(
34-
'id' => $id,
35-
'parent' => ((isset($parent)) && (strlen($parent) > 0)) ? $parent : null,
36-
'text' => $text,
37-
'root' => '',
38-
'path' => '',
39-
'file' => isset($file) ? $file : $id
40-
);
41-
34+
'id' => $id,
35+
'parent' => ((isset($parent)) && (strlen($parent) > 0)) ? $parent : null,
36+
'text' => $text,
37+
'root' => '',
38+
'path' => '',
39+
'file' => isset($file) ? $file : $id
40+
);
41+
4242
if ((!isset($parent)) || (strlen($parent) <= 0))
4343
{
4444
$item['root'] = '..';

0 commit comments

Comments
 (0)