Revision f17eb7f6
Von Sven Schöling vor etwa 13 Jahren hinzugefügt
bin/mozilla/oe.pl | ||
---|---|---|
461 | 461 |
my $introws = max 2, $form->numtextrows($form->{intnotes}, 35, 8); |
462 | 462 |
$rows = max $rows, $introws; |
463 | 463 |
|
464 |
$TMPL_VAR{notes} = qq|<textarea name=notes rows=$rows cols=25 wrap=soft>| . H($form->{notes}) . qq|</textarea>|;
|
|
465 |
$TMPL_VAR{intnotes} = qq|<textarea name=intnotes rows=$introws cols=35 wrap=soft>| . H($form->{intnotes}) . qq|</textarea>|;
|
|
464 |
$TMPL_VAR{notes} = qq|<textarea name=notes rows="$rows" cols="25">| . H($form->{notes}) . qq|</textarea>|;
|
|
465 |
$TMPL_VAR{intnotes} = qq|<textarea name=intnotes rows="$introws" cols="35">| . H($form->{intnotes}) . qq|</textarea>|;
|
|
466 | 466 |
|
467 | 467 |
if (!$form->{taxincluded}) { |
468 | 468 |
|
Auch abrufbar als: Unified diff
warp=soft ist nicht im HTML Standard, und in den Browsern die es verstehen aber eh der default Zustand von textarea.