diff options
author | Ivan Kohler <ivan@freeside.biz> | 2016-03-09 16:11:02 -0800 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2016-03-09 16:11:02 -0800 |
commit | b36492836515311a95609f3c23d5292eb95f435f (patch) | |
tree | 1f0ffae6d9668b90d5da052d2c857573fe4523fc | |
parent | 52cf92b8969a3187b1615c557d650362ef702497 (diff) |
xss
-rwxr-xr-x | httemplate/search/quotation.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/httemplate/search/quotation.html b/httemplate/search/quotation.html index 2eba71cb0..16affeb02 100755 --- a/httemplate/search/quotation.html +++ b/httemplate/search/quotation.html @@ -27,7 +27,7 @@ $prospect_main ? $prospect_main->name : ''; }, sub { my $cust_main = shift->cust_main; - $cust_main ? $cust_main->name : ''; + $cust_main ? encode_entities($cust_main->name) : ''; }, 'confidence', sub { my $quot = shift; |