diff options
author | Ivan Kohler <ivan@freeside.biz> | 2016-09-25 12:29:45 -0700 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2016-09-25 12:29:45 -0700 |
commit | 0a5585fba67aaa55301fe585a75aae1106aea1e6 (patch) | |
tree | 3099d8922d1b765c869d781251e1cbfc99007475 /httemplate/edit/cust_main | |
parent | 017a6460130be41bb563318b28ab61115d1cfb35 (diff) |
fix translation escaping
Diffstat (limited to 'httemplate/edit/cust_main')
-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> |