diff options
-rw-r--r-- | FS/FS/part_event/Condition/cust_bill_past_due.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/FS/FS/part_event/Condition/cust_bill_past_due.pm b/FS/FS/part_event/Condition/cust_bill_past_due.pm index 2a66a436d..a889a0090 100644 --- a/FS/FS/part_event/Condition/cust_bill_past_due.pm +++ b/FS/FS/part_event/Condition/cust_bill_past_due.pm @@ -29,7 +29,7 @@ sub condition { } sub condition_sql { - return '' if $FS::UID::driver_name ne 'Pg'; + return 'true' if $FS::UID::driver_name ne 'Pg'; my( $class, $table, %opt ) = @_; my ($sec,$min,$hour,$mday,$mon,$year) = (localtime($opt{'time'}))[0..5]; my $start_of_today = timelocal(0,0,0,$mday,$mon,$year)+1; |