diff options
| author | jeff <jeff> | 2008-07-10 03:16:48 +0000 | 
|---|---|---|
| committer | jeff <jeff> | 2008-07-10 03:16:48 +0000 | 
| commit | b23c92f6e21bd165bafa200f3c03ef223346a074 (patch) | |
| tree | 67f2867ea5d41a9ce54366adbb1a7a29a219d6ec | |
| parent | a4d37dd27a244461cd8bcc23c898a4040766189d (diff) | |
restore line item date ranges
| -rw-r--r-- | FS/FS/cust_bill.pm | 5 | 
1 files changed, 3 insertions, 2 deletions
| diff --git a/FS/FS/cust_bill.pm b/FS/FS/cust_bill.pm index c29bb4209..7049da6ea 100644 --- a/FS/FS/cust_bill.pm +++ b/FS/FS/cust_bill.pm @@ -2537,8 +2537,9 @@ 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). ")"; +          warn "improving description"; +          $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 | 
