From 5af5c0318bc6647cb9b655b8523a32e91f27ed4c Mon Sep 17 00:00:00 2001 From: Kyle M Hall Date: Mon, 22 Aug 2016 14:14:32 +0000 Subject: [PATCH] Bug 14390 [QA Followup] - Never try to update closed out fines --- C4/Overdues.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/C4/Overdues.pm b/C4/Overdues.pm index 3f0c32d..bd7fbe9 100644 --- a/C4/Overdues.pm +++ b/C4/Overdues.pm @@ -538,7 +538,7 @@ sub UpdateFine { my $sth = $dbh->prepare( "SELECT * FROM accountlines WHERE borrowernumber=? - AND accounttype IN ('FU','O','F','M')" + AND accounttype IN ('FU','O','M')" ); $sth->execute( $borrowernumber ); my $data; -- 2.1.4