From af9ece428018e87359e2bd02baaa31ece180c855 Mon Sep 17 00:00:00 2001 From: Kyle M Hall Date: Tue, 5 Dec 2017 10:23:45 -0500 Subject: [PATCH] Bug 19750 - Overdues without a fine rule add warnings to log MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Followed test plan and works as expected. Signed-off-by: Dilan Johnpullé --- misc/cronjobs/fines.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misc/cronjobs/fines.pl b/misc/cronjobs/fines.pl index 6c3f830..87c732e 100755 --- a/misc/cronjobs/fines.pl +++ b/misc/cronjobs/fines.pl @@ -130,7 +130,7 @@ for my $overdue ( @{$overdues} ) { # Don't update the fine if today is a holiday. # This ensures that dropbox mode will remove the correct amount of fine. if ( $mode eq 'production' && !$is_holiday{$branchcode} ) { - if ( $amount > 0 ) { + if ( $amount && $amount > 0 ) { UpdateFine( { issue_id => $overdue->{issue_id}, -- 2.1.4