diff options
author | Ivan Kohler <ivan@freeside.biz> | 2012-12-17 12:24:48 -0800 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2012-12-17 12:24:48 -0800 |
commit | d0002d9941b90fc390bfc4c3382fd092cd5a3594 (patch) | |
tree | 54298f360b473693fe9e8494e585d95ccd0dba8e /httemplate/search | |
parent | 05344566bd3f5443a864eedbcee8608483a01179 (diff) |
fix XSS
Diffstat (limited to 'httemplate/search')
-rw-r--r-- | httemplate/search/customer_accounting_summary.html | 2 |
1 files changed, 1 insertions, 1 deletions
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 <A HREF="<% "$myself;_type=xls" %>">Excel spreadsheet</A><BR> % my $style = ''; % $style .= " rowspan=".$cell->{rowspan} if $cell->{rowspan} > 1; % $style .= " colspan=".$cell->{colspan} if $cell->{colspan} > 1; - <<%$td%><%$style%>><% $cell->{value} %></<%$td%>> + <<%$td%><%$style%>><% $cell->{value} |h %></<%$td%>> % } </tr> % } |