summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorivan <ivan>2003-03-20 04:00:36 +0000
committerivan <ivan>2003-03-20 04:00:36 +0000
commit9992aaef6e5bc9cd3d4a6809b0e69e80ac29d031 (patch)
treed15046e5bf4232b7b4095dc0cb914ebf5ea5226b
parente95b8c2e1138594f6bc3715fd9c24a06636311d8 (diff)
wide textareas
-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' ) {