summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIvan Kohler <ivan@freeside.biz>2013-02-01 00:04:22 -0800
committerIvan Kohler <ivan@freeside.biz>2013-02-01 00:04:22 -0800
commit206b339a530130306e65d05cff1bbe87eab4df1b (patch)
treedf128d956b21ed7190a025c637496dcd8ffeb95e
parenta15834aba232f1b6239645053107766e30398c94 (diff)
fix double escaping of customer name in title of customer-specific account report
-rwxr-xr-xhttemplate/search/report_svc_acct.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/httemplate/search/report_svc_acct.html b/httemplate/search/report_svc_acct.html
index 74bf5538e..e47f72726 100755
--- a/httemplate/search/report_svc_acct.html
+++ b/httemplate/search/report_svc_acct.html
@@ -116,7 +116,7 @@
die "access denied"
unless $FS::CurrentUser::CurrentUser->access_right('Services: Accounts: Advanced search'); #?
-my $title = emt('Account Report');
+my $title = mt('Account Report');
#false laziness w/report_cust_pkg.html
my $custnum = '';
@@ -127,7 +127,7 @@ if ( $cgi->param('custnum') =~ /^(\d+)$/ ) {
'hashref' => { 'custnum' => $custnum },
'extra_sql' => ' AND '. $FS::CurrentUser::CurrentUser->agentnums_sql,
}) or die "unknown custnum $custnum";
- $title = emt("Account Report: [_1]", $cust_main->name);
+ $title = mt("Account Report: [_1]", $cust_main->name);
}
</%init>