From: ivan Date: Wed, 27 Jul 2011 23:41:59 +0000 (+0000) Subject: fix package report title i18n w/per-customer package reports, RT#12515 X-Git-Tag: freeside_2_3_1~375 X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=commitdiff_plain;h=bb0a133d8272271cbd4f8798b3e43a93e86022eb fix package report title i18n w/per-customer package reports, RT#12515 --- diff --git a/httemplate/search/report_cust_pkg.html b/httemplate/search/report_cust_pkg.html index d9b6cd7a1..bbd9f6bc4 100755 --- a/httemplate/search/report_cust_pkg.html +++ b/httemplate/search/report_cust_pkg.html @@ -1,4 +1,4 @@ -<% include('/elements/header.html', $title ) %> +<% include('/elements/header.html', mt($title, @title_arg) %>
@@ -159,6 +159,8 @@ die "access denied" unless $FS::CurrentUser::CurrentUser->access_right('List packages'); my $title = 'Package Report'; +#false laziness w/report_cust_bill.html +my @title_arg = (); my $custnum = ''; if ( $cgi->param('custnum') =~ /^(\d+)$/ ) { @@ -168,7 +170,8 @@ if ( $cgi->param('custnum') =~ /^(\d+)$/ ) { 'hashref' => { 'custnum' => $custnum }, 'extra_sql' => ' AND '. $FS::CurrentUser::CurrentUser->agentnums_sql, }) or die "unknown custnum $custnum"; - $title .= ': '. $cust_main->name; + $title .= ': [_1]'; + push @title_arg, $cust_main->name; }