summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMitch Jackson <mitch@freeside.biz>2018-10-27 13:08:52 -0400
committerMitch Jackson <mitch@freeside.biz>2018-10-27 13:08:52 -0400
commit702c7a001e2a065ca833a7d5711754b38278e41d (patch)
tree8498fa5ae1542340feb55a45804c3e5bba4a2009
parentdd769e3736c49fa4cedf16f13db3a58cc7573cbb (diff)
RT# 31964 Fix XSS
-rw-r--r--httemplate/view/prospect_main.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/httemplate/view/prospect_main.html b/httemplate/view/prospect_main.html
index 66abffcdd..ac56fa7a2 100644
--- a/httemplate/view/prospect_main.html
+++ b/httemplate/view/prospect_main.html
@@ -41,8 +41,8 @@
% foreach my $contact ( $prospect_main->contact ) {
<TR>
- <TD ALIGN="right"><% $contact->contact_classname %> Contact</TD>
- <TD BGCOLOR="#FFFFFF"><% $contact->line %></TD>
+ <TD ALIGN="right"><% $contact->contact_classname |h %> Contact</TD>
+ <TD BGCOLOR="#FFFFFF"><% $contact->line |h %></TD>
</TR>
%}