summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIvan Kohler <ivan@freeside.biz>2013-08-07 12:05:58 -0700
committerIvan Kohler <ivan@freeside.biz>2013-08-07 12:05:58 -0700
commit44e415a1127cbd4b433ad4b0a7c1432dd935e766 (patch)
treeb83c94bd1c7b9a02e1b77a8daa8888cce85037b8
parent0fc8ceb69a9f44bd1a93b511139f76c977fdefaf (diff)
fix historical services showing up on invoices, RT#24405
-rw-r--r--FS/FS/Template_Mixin.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/FS/FS/Template_Mixin.pm b/FS/FS/Template_Mixin.pm
index dd0801ca2..dc3b93dd7 100644
--- a/FS/FS/Template_Mixin.pm
+++ b/FS/FS/Template_Mixin.pm
@@ -2601,7 +2601,7 @@ sub _items_cust_bill_pkg {
if $DEBUG > 1;
my @svc_labels = map &{$escape_function}($_),
- $cust_pkg->h_labels_short($self->_date, undef, 'I');
+ $cust_pkg->h_labels_short(@dates, 'I');
push @d, @svc_labels
unless $cust_bill_pkg->pkgpart_override; #don't redisplay services
$svc_label = $svc_labels[0];