Revision f6124ea6
Von Thomas Kasulke vor mehr als 17 Jahren hinzugefügt
bin/mozilla/is.pl | ||
---|---|---|
371 | 371 |
my $customers = qq| |
372 | 372 |
<th align="right">| . $locale->text('Customer') . qq|</th> |
373 | 373 |
<td>| . |
374 |
(($myconfig{vclimit} == 1 )
|
|
375 |
? qq|<input type="text" value="$form->{oldcustomer}" name="customer">|
|
|
374 |
(($myconfig{vclimit} <= scalar(@values))
|
|
375 |
? qq|<input type="text" value="| . H($form->{"oldcustomer"}) . qq|" name="customer">|
|
|
376 | 376 |
: (NTI($cgi->popup_menu('-name' => 'customer', '-default' => $form->{oldcustomer}, |
377 | 377 |
'-onChange' => 'document.getElementById(\'update_button\').click();', |
378 | 378 |
'-values' => \@values, '-labels' => \%labels)))) . qq| |
bin/mozilla/oe.pl | ||
---|---|---|
439 | 439 |
<input type="hidden" name="old$form->{vc}" value="| . H($form->{"old$form->{vc}"}) . qq|"> |
440 | 440 |
<th align="right">| . $locale->text(ucfirst($form->{vc})) . qq|</th> |
441 | 441 |
<td>| . |
442 |
(($myconfig{vclimit} == 1 )
|
|
442 |
(($myconfig{vclimit} <= scalar(@values))
|
|
443 | 443 |
? qq|<input type="text" value="| . H($form->{"old$form->{vc}"}) . qq|" name="$form->{vc}">| |
444 | 444 |
: (NTI($cgi->popup_menu('-name' => "$form->{vc}", '-default' => $form->{"old$form->{vc}"}, |
445 | 445 |
'-onChange' => 'document.getElementById(\'update_button\').click();', |
Auch abrufbar als: Unified diff
vclimit-Vergleich korrigiert