From: Mark Wells Date: Wed, 29 Jan 2014 02:06:41 +0000 (-0800) Subject: fix "the month of" text on invoices, #24850 X-Git-Url: http://git.freeside.biz/gitweb/?a=commitdiff_plain;h=e345aa297433b9653f42fc81145eb107c482a19d;p=freeside.git fix "the month of" text on invoices, #24850 --- diff --git a/FS/FS/TemplateItem_Mixin.pm b/FS/FS/TemplateItem_Mixin.pm index 664432975..66ccfb55d 100644 --- a/FS/FS/TemplateItem_Mixin.pm +++ b/FS/FS/TemplateItem_Mixin.pm @@ -100,7 +100,7 @@ sub time_period_pretty { if ( defined($date_style) && $date_style eq 'month_of' ) { # (now watch, someone's going to make us do Chinese) $time_period = $self->mt('The month of [_1]', - $self->time2str_local('The month of %B', $self->sdate) + $self->time2str_local('%B', $self->sdate) ); } elsif ( defined($date_style) && $date_style eq 'X_month' ) { my $desc = $conf->config( 'cust_bill-line_item-date_description',