diff options
author | ivan <ivan> | 2010-11-23 01:52:22 +0000 |
---|---|---|
committer | ivan <ivan> | 2010-11-23 01:52:22 +0000 |
commit | 86b7d0396798925ab99c8f6b399d1800d3ae57cc (patch) | |
tree | 07edf4a34a4fa787b9a688226629ec0e96f043c7 /FS | |
parent | ee03c169b91b87c93c21f768d103eb7316559214 (diff) |
fix noisy but harmless fallout from RT#10148
Diffstat (limited to 'FS')
-rw-r--r-- | FS/FS/cust_main/Billing.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/FS/FS/cust_main/Billing.pm b/FS/FS/cust_main/Billing.pm index 536a93860..4b727bb7c 100644 --- a/FS/FS/cust_main/Billing.pm +++ b/FS/FS/cust_main/Billing.pm @@ -857,7 +857,7 @@ sub _make_lines { my $unitrecur = 0; my $sdate; if ( ! $cust_pkg->start_date - and ( ! $cust_pkg->susp || $part_pkg->option('suspend_bill') ) + and ( ! $cust_pkg->susp || $part_pkg->option('suspend_bill', 1) ) and ( $part_pkg->freq ne '0' && ( $cust_pkg->bill || 0 ) <= $time ) || ( $part_pkg->plan eq 'voip_cdr' |