summaryrefslogtreecommitdiff
path: root/httemplate/edit
diff options
context:
space:
mode:
authorivan <ivan>2003-03-20 04:00:33 +0000
committerivan <ivan>2003-03-20 04:00:33 +0000
commit7f089ef86f1e695fabf6b046e00f8cef14af9000 (patch)
tree06fac50762f48a1f6f527f1f4341701399368e15 /httemplate/edit
parent9aec22e5fd00800c6e7952ae5b85cc639d4b1e78 (diff)
wide textareas
Diffstat (limited to 'httemplate/edit')
-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 bdf41e2b2..8a829e57a 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">$value</TEXTAREA>!;
+ $html .= qq!<TEXTAREA NAME="$option" COLS=80>$value</TEXTAREA>!;
} elsif ( $type eq 'text' ) {
$html .= qq!<INPUT TYPE="text" NAME="$option" VALUE="$value" SIZE=64>!;
} elsif ( $type eq 'checkbox' ) {