diff options
| author | Mitch Jackson <mitch@freeside.biz> | 2018-10-27 13:08:52 -0400 |
|---|---|---|
| committer | Mitch Jackson <mitch@freeside.biz> | 2018-10-27 13:08:52 -0400 |
| commit | 702c7a001e2a065ca833a7d5711754b38278e41d (patch) | |
| tree | 8498fa5ae1542340feb55a45804c3e5bba4a2009 | |
| parent | dd769e3736c49fa4cedf16f13db3a58cc7573cbb (diff) | |
RT# 31964 Fix XSS
| -rw-r--r-- | httemplate/view/prospect_main.html | 4 |
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> %} |
