summaryrefslogtreecommitdiff
path: root/httemplate/elements
diff options
context:
space:
mode:
authorIvan Kohler <ivan@freeside.biz>2016-09-25 12:21:00 -0700
committerIvan Kohler <ivan@freeside.biz>2016-09-25 12:21:00 -0700
commit24389dff37b486ed4f0281bd50a3ff1ee77ae74d (patch)
tree0b8574f7e9d34101d780a0c2fd2064712769f1d6 /httemplate/elements
parent6d1717a6efc1db987c309d149e679a5676a04e4a (diff)
fix translation escaping
Diffstat (limited to 'httemplate/elements')
-rw-r--r--httemplate/elements/change_password.html2
-rw-r--r--httemplate/elements/tr-cust_main-phones.html8
2 files changed, 5 insertions, 5 deletions
diff --git a/httemplate/elements/change_password.html b/httemplate/elements/change_password.html
index 2b40ec1c8..a84e823d2 100644
--- a/httemplate/elements/change_password.html
+++ b/httemplate/elements/change_password.html
@@ -8,7 +8,7 @@
display: none;
}
</STYLE>
-<A ID="<%$pre%>link" HREF="javascript:void(0)" onclick="<%$pre%>toggle(true)">(<% mt('change') %>)</A>
+<A ID="<%$pre%>link" HREF="javascript:void(0)" onclick="<%$pre%>toggle(true)">(<% emt('change') %>)</A>
<DIV ID="<%$pre%>form" CLASS="passwordbox">
<FORM METHOD="POST" ACTION="<%$fsurl%>misc/process/change-password.html">
<INPUT TYPE="hidden" NAME="svcnum" VALUE="<% $svc_acct->svcnum |h%>">
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>&nbsp;</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>&nbsp;</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>