[freeside-commits] branch FREESIDE_2_3_BRANCH updated. aaf20df651082ece4e891bf56a9fdff79c1165c1
Mark Wells
mark at 420.am
Tue Jan 28 18:10:50 PST 2014
The branch, FREESIDE_2_3_BRANCH has been updated
via aaf20df651082ece4e891bf56a9fdff79c1165c1 (commit)
from 0eab7643459bbf8626b0e89240d2f5f9d8a957d8 (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 aaf20df651082ece4e891bf56a9fdff79c1165c1
Author: Mark Wells <mark at freeside.biz>
Date: Tue Jan 28 18:08:53 2014 -0800
fix "the month of" text on invoices, #24850
diff --git a/FS/FS/cust_bill.pm b/FS/FS/cust_bill.pm
index 9d1631f..45f86ed 100644
--- a/FS/FS/cust_bill.pm
+++ b/FS/FS/cust_bill.pm
@@ -5135,7 +5135,9 @@ sub _items_cust_bill_pkg {
$cust_main->agentnum
);
if ( defined($date_style) && $date_style eq 'month_of' ) {
- $time_period = $self->time2str_local('The month of %B', $cust_bill_pkg->sdate);
+ $time_period = $self->mt('The month of [_1]',
+ $self->time2str_local('%B', $cust_bill_pkg->sdate)
+ );
} elsif ( defined($date_style) && $date_style eq 'X_month' ) {
my $desc = $conf->config( 'cust_bill-line_item-date_description',
$cust_main->agentnum
-----------------------------------------------------------------------
Summary of changes:
FS/FS/cust_bill.pm | 4 +++-
1 files changed, 3 insertions(+), 1 deletions(-)
More information about the freeside-commits
mailing list