diff options
| author | ivan <ivan> | 2003-11-24 13:23:32 +0000 | 
|---|---|---|
| committer | ivan <ivan> | 2003-11-24 13:23:32 +0000 | 
| commit | 37479acbf91d59e1fbbdd1adf3c01d933c0028a4 (patch) | |
| tree | 3ab1ca5d4c04197ed1b19481295f07ac65529c0f | |
| parent | 0cca3f705f337f46f511d2220ae81e809ea0e0d6 (diff) | |
fix html quoting of export options
| -rwxr-xr-x | httemplate/browse/part_export.cgi | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/httemplate/browse/part_export.cgi b/httemplate/browse/part_export.cgi index 76662e0c9..79c57aefc 100755 --- a/httemplate/browse/part_export.cgi +++ b/httemplate/browse/part_export.cgi @@ -26,7 +26,7 @@ function part_export_areyousure(href) {        <%= itable() %>        <% my %opt = $part_export->options;           foreach my $opt ( keys %opt ) { %> -           <TR><TD><%= $opt %></TD><TD><%= $opt{$opt} %></TD></TR> +           <TR><TD><%= $opt %></TD><TD><%= encode_entities($opt{$opt}) %></TD></TR>        <% } %>        </TABLE>      </TD> | 
