diff options
author | Ivan Kohler <ivan@freeside.biz> | 2016-09-25 12:21:00 -0700 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2016-09-25 12:21:00 -0700 |
commit | 24389dff37b486ed4f0281bd50a3ff1ee77ae74d (patch) | |
tree | 0b8574f7e9d34101d780a0c2fd2064712769f1d6 /httemplate/elements/tr-cust_main-phones.html | |
parent | 6d1717a6efc1db987c309d149e679a5676a04e4a (diff) |
fix translation escaping
Diffstat (limited to 'httemplate/elements/tr-cust_main-phones.html')
-rw-r--r-- | httemplate/elements/tr-cust_main-phones.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/httemplate/elements/tr-cust_main-phones.html b/httemplate/elements/tr-cust_main-phones.html index accf8ac64..a19340165 100644 --- a/httemplate/elements/tr-cust_main-phones.html +++ b/httemplate/elements/tr-cust_main-phones.html @@ -1,22 +1,22 @@ <TR> - <TD ALIGN="right" VALIGN="top"><% mt('Phones') %></TD> + <TD ALIGN="right" VALIGN="top"><% emt('Phones') %></TD> <TD COLSPAN=6> <TABLE CELLSPACING=0 CELLPADDING=0> <TR> <TD> <INPUT TYPE="text" NAME="<%$pre%>daytime" VALUE="<% $cust_main->get($pre.'daytime') %>" SIZE=18 onChange="<% $onchange %>" <%$disabled%> <%$style%>> - <BR><FONT SIZE=-1><% $daytime_label %></FONT> + <BR><FONT SIZE=-1><% $daytime_label |h %></FONT> </TD> <TD> </TD> <TD> <INPUT TYPE="text" NAME="<%$pre%>night" VALUE="<% $cust_main->get($pre.'night') %>" SIZE=18 onChange="<% $onchange %>" <%$disabled%> <%$style%>> - <BR><FONT SIZE=-1><% $night_label %></FONT> + <BR><FONT SIZE=-1><% $night_label |h %></FONT> </TD> <TD> </TD> <TD> <INPUT TYPE="text" NAME="<%$pre%>mobile" VALUE="<% $cust_main->get($pre.'mobile') %>" SIZE=18 onChange="<% $onchange %>" <%$disabled%> <%$style%>> - <BR><FONT SIZE=-1><% $mobile_label %></FONT> + <BR><FONT SIZE=-1><% $mobile_label |h %></FONT> </TD> </TR> </TABLE> |