[freeside-commits] branch FREESIDE_2_3_BRANCH updated. e12d1178ceacb68b0b8bb5fb892fb8829412080e
Ivan
ivan at 420.am
Mon Dec 17 12:24:51 PST 2012
The branch, FREESIDE_2_3_BRANCH has been updated
via e12d1178ceacb68b0b8bb5fb892fb8829412080e (commit)
from 40a907b33615d7a1a5dc543ef02f4102326e743f (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit e12d1178ceacb68b0b8bb5fb892fb8829412080e
Author: Ivan Kohler <ivan at freeside.biz>
Date: Mon Dec 17 12:24:50 2012 -0800
fix XSS
diff --git a/httemplate/search/customer_accounting_summary.html b/httemplate/search/customer_accounting_summary.html
index e01b8cd..0e9e24f 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>
% }
-----------------------------------------------------------------------
Summary of changes:
httemplate/search/customer_accounting_summary.html | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
More information about the freeside-commits
mailing list