diff options
author | jeff <jeff> | 2008-07-10 03:18:37 +0000 |
---|---|---|
committer | jeff <jeff> | 2008-07-10 03:18:37 +0000 |
commit | 8ab105cd64ac310f567d0ef6d4f662069a6adb65 (patch) | |
tree | ad3b75b1c2ff6615f94dac413277f8e84e0d8540 /FS | |
parent | 13a2fbbfbff2e8cc3cfa26a51e8bdbd39d4b0c2e (diff) |
restore line item date ranges
Diffstat (limited to 'FS')
-rw-r--r-- | FS/FS/cust_bill.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/FS/FS/cust_bill.pm b/FS/FS/cust_bill.pm index c404b8b01..8cc39ad50 100644 --- a/FS/FS/cust_bill.pm +++ b/FS/FS/cust_bill.pm @@ -2672,8 +2672,8 @@ sub _items_cust_bill_pkg { my $description = $desc; unless ( $conf->exists('disable_line_item_date_ranges') ) { - $desc .= " (" . time2str("%x", $cust_bill_pkg->sdate). - " - ". time2str("%x", $cust_bill_pkg->edate). ")"; + $description .= " (" . time2str("%x", $cust_bill_pkg->sdate). + " - ". time2str("%x", $cust_bill_pkg->edate). ")"; } #at least until cust_bill_pkg has "past" ranges in addition to |