diff options
author | Ivan Kohler <ivan@freeside.biz> | 2016-09-25 12:29:46 -0700 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2016-09-25 12:29:46 -0700 |
commit | f12ab9c8ffc1e0f611f40990399983896459743c (patch) | |
tree | f75d63de36cd1049370be4bfe6d0a02786205ae8 /httemplate/edit | |
parent | b9af6f7c9396b3000821fdbf3df02bab3cc149ad (diff) |
fix translation escaping
Diffstat (limited to 'httemplate/edit')
-rw-r--r-- | httemplate/edit/cust_main/name.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/httemplate/edit/cust_main/name.html b/httemplate/edit/cust_main/name.html index 9c6a24b56..713f54cdb 100644 --- a/httemplate/edit/cust_main/name.html +++ b/httemplate/edit/cust_main/name.html @@ -2,7 +2,7 @@ % my ($field, $value, $label, $extra) = @_; <DIV STYLE="display: inline-block" ID="<% $field %>_input"> <INPUT TYPE="text" NAME="<% $field %>" VALUE="<% $value |h %>" <%$extra%>> - <BR><FONT SIZE="-1" COLOR="#333333"><% mt($label) %></FONT> + <BR><FONT SIZE="-1" COLOR="#333333"><% emt($label) %></FONT> </DIV> </%def> |