diff --git a/pandora_console/include/styles/pandora.css b/pandora_console/include/styles/pandora.css index 713d7a1112..3f0fc574a3 100644 --- a/pandora_console/include/styles/pandora.css +++ b/pandora_console/include/styles/pandora.css @@ -168,7 +168,7 @@ * { font-size: 9pt; - line-height: 16pt; + line-height: 10pt; } html { diff --git a/pandora_console/operation/menu.php b/pandora_console/operation/menu.php index 123a7e63e8..19d12e5a03 100644 --- a/pandora_console/operation/menu.php +++ b/pandora_console/operation/menu.php @@ -644,30 +644,7 @@ if (!empty($rows)) { $sub = []; foreach ($rows as $row) { - // Audit //meter en extensiones. - $sub[$row['link']]['text'] = $row['name']; - $sub[$row['link']]['id'] = $row['name']; - $sub[$row['link']]['type'] = 'direct'; - $sub[$row['link']]['subtype'] = 'new_blank'; - } - - $menu_operation['links']['sub'] = $sub; -} - - - -// Links. -$rows = db_get_all_rows_in_table('tlink', 'name'); -// $rows = []; -if (!empty($rows)) { - $menu_operation['links']['text'] = __('Links'); - $menu_operation['links']['sec2'] = ''; - $menu_operation['links']['id'] = 'god-links'; - - $sub = []; - foreach ($rows as $row) { - // Audit //meter en extensiones. - $sub[$row['link']]['text'] = $row['name']; + $sub[$row['link']]['text'] = __($row['name']); $sub[$row['link']]['id'] = $row['name']; $sub[$row['link']]['type'] = 'direct'; $sub[$row['link']]['subtype'] = 'new_blank';