Revision 2a4f08f5
Von Moritz Bunkus vor fast 18 Jahren hinzugefügt
bin/mozilla/io.pl | ||
---|---|---|
1602 | 1602 |
} |
1603 | 1603 |
|
1604 | 1604 |
if (scalar(keys (%{ $form->{printers} })) !=0) { |
1605 |
|
|
1606 |
$printer_select = qq|<select name=printer_id> |
|
1605 |
my $selected = !$form->{"printer_id"} ? "selected" : ""; |
|
1606 |
$printer_select = qq|<select name=printer_id $selected>
|
|
1607 | 1607 |
<option value=""></option>|; |
1608 | 1608 |
foreach $item (@{ $form->{printers} }) { |
1609 |
$printer_select .= qq|<option value="$item->{id}">$item->{printer_description}</option>|; |
|
1609 |
$selected = $item->{"id"} == $form->{"printer_id"} ? "selected" : ""; |
|
1610 |
$printer_select .= qq|<option value="$item->{id}" $selected>$item->{printer_description}</option>|; |
|
1610 | 1611 |
} |
1611 | 1612 |
} |
1612 | 1613 |
|
Auch abrufbar als: Unified diff
Beim "Erneuern" den vorher eingestellten Drucker auch weiterhin eingestellt lassen.