From eaa5b51133cff4062ef1253582f50487561cfbac Mon Sep 17 00:00:00 2001 From: ivan Date: Tue, 21 Apr 2009 16:42:26 +0000 Subject: [PATCH] yow. fix fallout from cust_main.archived stuff causing nothing to bill. RT#4412 --- FS/FS/Cron/bill.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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'}; -- 2.11.0