diff options
author | ivan <ivan> | 2008-09-12 00:41:25 +0000 |
---|---|---|
committer | ivan <ivan> | 2008-09-12 00:41:25 +0000 |
commit | 95b85a6d3d7a154aa88a673d81b8a4d9e7a4a402 (patch) | |
tree | 90e14ac81b34097d57bfe7f505d66494ef09e50a /FS | |
parent | 96f1d947b394cb96690f5fde2f91f3efcd21dc21 (diff) |
correct a (fortunately harmless) typo
Diffstat (limited to 'FS')
-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 a1dfddc1f..086fded58 100644 --- a/FS/FS/cust_main.pm +++ b/FS/FS/cust_main.pm @@ -2106,7 +2106,7 @@ sub bill { 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 ); |