diff options
author | ivan <ivan> | 2008-09-12 00:41:09 +0000 |
---|---|---|
committer | ivan <ivan> | 2008-09-12 00:41:09 +0000 |
commit | bbc49345e8101dae7311cb3f4043bc6d0775d0ca (patch) | |
tree | 52c28d09d6a29323468f15fd24ba1ecd6ec23c57 | |
parent | 096f208ab7e91fdf6391001a2e28c0a80374ee39 (diff) |
correct a (fortunately harmless) typo
-rw-r--r-- | FS/FS/cust_main.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/FS/FS/cust_main.pm b/FS/FS/cust_main.pm index 8b4181e6f..e64d666bc 100644 --- a/FS/FS/cust_main.pm +++ b/FS/FS/cust_main.pm @@ -2461,7 +2461,7 @@ sub _make_lines { if ( $part_pkg->option('recur_temporality') eq 'preceding' ) { $cust_bill_pkg->sdate( $hash{last_bill} ); - $cust_bill_pkg->edate( $sdate - 86399 );2#60s*60m*24h-1 + $cust_bill_pkg->edate( $sdate - 86399 ); #60s*60m*24h-1 } else { #if ( $part_pkg->option('recur_temporality') eq 'upcoming' ) { $cust_bill_pkg->sdate( $sdate ); $cust_bill_pkg->edate( $cust_pkg->bill ); |