summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIvan Kohler <ivan@freeside.biz>2012-07-05 16:16:31 -0700
committerIvan Kohler <ivan@freeside.biz>2012-07-05 16:16:31 -0700
commit840d76586528a4f4335d1b8138378d8fa9a42aff (patch)
treea112cb6508520d84168e643406d20cdd76706c66
parent3063fb45f35d0cb5253871a540a8f0a0efa06b5a (diff)
fix escaping in cust_main.company, got lost in #940 somehow?
-rw-r--r--httemplate/view/cust_main/contacts.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/httemplate/view/cust_main/contacts.html b/httemplate/view/cust_main/contacts.html
index 6213f27dd..9c6069182 100644
--- a/httemplate/view/cust_main/contacts.html
+++ b/httemplate/view/cust_main/contacts.html
@@ -33,7 +33,7 @@
% if ( $cust_main->company ) {
<TR>
<TD ALIGN="right"><% mt('Company') |h %></TD>
- <TD COLSPAN=7 BGCOLOR="#ffffff"><% $cust_main->company %></TD>
+ <TD COLSPAN=7 BGCOLOR="#ffffff"><% $cust_main->company |h %></TD>
</TR>
% }
% } # if $this eq 'bill'