summaryrefslogtreecommitdiff
path: root/httemplate/elements
diff options
context:
space:
mode:
authorIvan Kohler <ivan@freeside.biz>2016-09-25 12:20:52 -0700
committerIvan Kohler <ivan@freeside.biz>2016-09-25 12:20:52 -0700
commit9d44cb2be1bfdfb20d3f733b07ca4441e7f18401 (patch)
tree43cb1862d1c282e4bfa50a952fa2b43f3e2b595f /httemplate/elements
parent6f234776ee49a5991d6a8a0f360ad32f536c6668 (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>