From d0002d9941b90fc390bfc4c3382fd092cd5a3594 Mon Sep 17 00:00:00 2001 From: Ivan Kohler Date: Mon, 17 Dec 2012 12:24:48 -0800 Subject: [PATCH] fix XSS --- httemplate/search/customer_accounting_summary.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/httemplate/search/customer_accounting_summary.html b/httemplate/search/customer_accounting_summary.html index e01b8cd51..0e9e24fa6 100644 --- a/httemplate/search/customer_accounting_summary.html +++ b/httemplate/search/customer_accounting_summary.html @@ -107,7 +107,7 @@ as ">Excel spreadsheet
% my $style = ''; % $style .= " rowspan=".$cell->{rowspan} if $cell->{rowspan} > 1; % $style .= " colspan=".$cell->{colspan} if $cell->{colspan} > 1; - <<%$td%><%$style%>><% $cell->{value} %>> + <<%$td%><%$style%>><% $cell->{value} |h %>> % } % } -- 2.11.0