summaryrefslogtreecommitdiff
path: root/httemplate/edit/part_export.cgi
diff options
context:
space:
mode:
authorivan <ivan>2003-06-13 08:46:19 +0000
committerivan <ivan>2003-06-13 08:46:19 +0000
commit0ea5e6fa4782600ab33813555a38fd0880d6145c (patch)
tree5766a92215869845431576ee220f755d040b15ac /httemplate/edit/part_export.cgi
parent499b8660e2aa5632fc14e8fcfa6631800ade1e35 (diff)
missing semi
Diffstat (limited to 'httemplate/edit/part_export.cgi')
-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 0590549..24d646b 100644
--- a/httemplate/edit/part_export.cgi
+++ b/httemplate/edit/part_export.cgi
@@ -72,7 +72,7 @@ my $widget = new HTML::Widgets::SelectLayers(
} elsif ( $type eq 'text' ) {
$html .= qq!<INPUT TYPE="text" NAME="$option" VALUE="$value" SIZE=64>!;
} elsif ( $type eq 'checkbox' ) {
- $html .= qq!<INPUT TYPE="checkbox" NAME="$option" VALUE="1"!
+ $html .= qq!<INPUT TYPE="checkbox" NAME="$option" VALUE="1"!;
$html .= ' CHECKED' if $value;
$html .= '>';
} else {