Fix look and feel v20

This commit is contained in:
Laurent Destailleur
2024-06-16 12:11:47 +02:00
parent 88a48a1625
commit d9ac7581fa
4 changed files with 10 additions and 11 deletions

View File

@@ -351,12 +351,10 @@ class FormAdmin
ksort($menuarray);
// Affichage liste deroulante des menus
print '<select class="flat maxwidth100" id="'.$htmlname.'" name="'.$htmlname.'">';
$oldprefix = '';
// Show combo list of menu handlers
print '<select class="flat maxwidth150" id="'.$htmlname.'" name="'.$htmlname.'">';
foreach ($menuarray as $key => $val) {
$tab = explode('_', $key);
$newprefix = $tab[0];
print '<option value="'.$key.'"';
if ($key == $selected) {
print ' selected';