diff --git a/pandora_console/include/functions_menu.php b/pandora_console/include/functions_menu.php index 75f92e9e86..9e0d356b62 100644 --- a/pandora_console/include/functions_menu.php +++ b/pandora_console/include/functions_menu.php @@ -330,7 +330,7 @@ function menu_print_menu (&$menu) { $count_sub2 = 0; foreach ($sub['sub2'] as $key => $sub2) { - if (enterprise_hook ('enterprise_acl', array ($config['id_user'], $mainsec, $subsec2, false,$key)) == false) { + if (enterprise_hook ('enterprise_acl', array ($config['id_user'], $mainsec, $subsec2, false, $key)) == false) { continue; } @@ -387,17 +387,15 @@ function menu_print_menu (&$menu) { } } - - if ($menu_selected) $seleccionado = 'selected'; else $seleccionado = ''; - + //Print out the first level $output .= '
  • '; //onclick="location.href=\'index.php?sec='.$mainsec.'&sec2='.$main["sec2"].($main["refr"] ? '&refr='.$main["refr"] : '').'\'">'; - + $length = strlen(__($main["text"])); $padding_top = ( $length >= 18) ? 6 : 12; @@ -663,7 +661,7 @@ function menu_get_sec2_pages($sec, $sec2, $menu_hash = false) { $sec3_array = array(); - if (isset($sec2)) { + if (isset($menu[$sec]['sub']) AND isset($menu[$sec]['sub'][$sec2]['sub2'])) { // Get the sec2 of the subsections foreach ($menu[$sec]['sub'][$sec2]['sub2'] as $k => $v) { $sec3_array[$k] = $v['text'];