summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorivan <ivan>2003-07-01 09:00:46 +0000
committerivan <ivan>2003-07-01 09:00:46 +0000
commitad1aaf055a68799626721ec803d5a3a2f8ec6fc2 (patch)
treecb63ce7225191b2bf44f2217c9ac6405108d30e0
parenta8007fa244bb94d7c9e963cc8f7f2014ffd9a8ba (diff)
larger textareas in export options
-rw-r--r--httemplate/edit/part_export.cgi2
1 files changed, 1 insertions, 1 deletions
diff --git a/httemplate/edit/part_export.cgi b/httemplate/edit/part_export.cgi
index 24d646b8b..cc60f1aeb 100644
--- a/httemplate/edit/part_export.cgi
+++ b/httemplate/edit/part_export.cgi
@@ -67,7 +67,7 @@ my $widget = new HTML::Widgets::SelectLayers(
}
$html .= '</SELECT>';
} elsif ( $type eq 'textarea' ) {
- $html .= qq!<TEXTAREA NAME="$option" COLS=80 WRAP="virtual">!.
+ $html .= qq!<TEXTAREA NAME="$option" COLS=80 ROWS=8 WRAP="virtual">!.
qq!$value</TEXTAREA>!;
} elsif ( $type eq 'text' ) {
$html .= qq!<INPUT TYPE="text" NAME="$option" VALUE="$value" SIZE=64>!;