[freeside-commits] branch FREESIDE_2_3_BRANCH updated. b0a937058e0b5834a4413996f482a43ca1a74576

Ivan ivan at 420.am
Fri Feb 1 00:04:24 PST 2013


The branch, FREESIDE_2_3_BRANCH has been updated
       via  b0a937058e0b5834a4413996f482a43ca1a74576 (commit)
      from  f7b496e18b998a6eae027e56dc4943d0d6cc9c4b (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit b0a937058e0b5834a4413996f482a43ca1a74576
Author: Ivan Kohler <ivan at freeside.biz>
Date:   Fri Feb 1 00:04:23 2013 -0800

    fix double escaping of customer name in title of customer-specific account report

diff --git a/httemplate/search/report_svc_acct.html b/httemplate/search/report_svc_acct.html
index 74bf553..e47f727 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>

-----------------------------------------------------------------------

Summary of changes:
 httemplate/search/report_svc_acct.html |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)




More information about the freeside-commits mailing list