diff options
author | ivan <ivan> | 2009-04-21 16:42:26 +0000 |
---|---|---|
committer | ivan <ivan> | 2009-04-21 16:42:26 +0000 |
commit | eaa5b51133cff4062ef1253582f50487561cfbac (patch) | |
tree | 505bff41b874b359bd54b3eaf6de416f05e22fc4 | |
parent | 4fafa0e68313d21c7cef6c67f624b6c4319b5ab7 (diff) |
yow. fix fallout from cust_main.archived stuff causing nothing to bill. RT#4412
-rw-r--r-- | FS/FS/Cron/bill.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/FS/FS/Cron/bill.pm b/FS/FS/Cron/bill.pm index 5c0a5da59..c1cfbae5e 100644 --- a/FS/FS/Cron/bill.pm +++ b/FS/FS/Cron/bill.pm @@ -24,7 +24,7 @@ sub bill { my @search = (); - push @search, "cust_main.archived != 'Y' "; #disable? + push @search, "( cust_main.archived != 'Y' OR archived IS NULL )"; #disable? push @search, "cust_main.payby = '". $opt{'p'}. "'" if $opt{'p'}; |