summaryrefslogtreecommitdiff
path: root/httemplate
diff options
context:
space:
mode:
authorivan <ivan>2003-03-20 04:09:02 +0000
committerivan <ivan>2003-03-20 04:09:02 +0000
commitd9e8553b1364b4a5d5176a06a716c5f68579a8f2 (patch)
tree0a082e2a7084c2a3a0a252a5c26aa0711dd010ff /httemplate
parent9992aaef6e5bc9cd3d4a6809b0e69e80ac29d031 (diff)
wrap this textbox hard
Diffstat (limited to 'httemplate')
-rw-r--r--httemplate/edit/part_export.cgi3
1 files changed, 2 insertions, 1 deletions
diff --git a/httemplate/edit/part_export.cgi b/httemplate/edit/part_export.cgi
index 8a829e57a..31d6134e2 100644
--- a/httemplate/edit/part_export.cgi
+++ b/httemplate/edit/part_export.cgi
@@ -67,7 +67,8 @@ my $widget = new HTML::Widgets::SelectLayers(
}
$html .= '</SELECT>';
} elsif ( $type eq 'textarea' ) {
- $html .= qq!<TEXTAREA NAME="$option" COLS=80>$value</TEXTAREA>!;
+ $html .= qq!<TEXTAREA NAME="$option" COLS=80 WRAP="hard">!.
+ qq!$value</TEXTAREA>!;
} elsif ( $type eq 'text' ) {
$html .= qq!<INPUT TYPE="text" NAME="$option" VALUE="$value" SIZE=64>!;
} elsif ( $type eq 'checkbox' ) {