diff options
author | ivan <ivan> | 2003-06-13 08:46:15 +0000 |
---|---|---|
committer | ivan <ivan> | 2003-06-13 08:46:15 +0000 |
commit | aa84d2d45098bb04fbc93c45422105644aadd0b5 (patch) | |
tree | 450b9a49a98f437abf7dddd9fe2c22b71176b2dc | |
parent | 93e44dcab7a8b0f0b445715942e05381b1b39a23 (diff) |
missing semi
-rw-r--r-- | httemplate/edit/part_export.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/httemplate/edit/part_export.cgi b/httemplate/edit/part_export.cgi index 0590549f5..24d646b8b 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 { |