From 810594f010542476774b35dc1fa1094d28e907e3 Mon Sep 17 00:00:00 2001 From: Marcel de Rooy Date: Fri, 6 Oct 2017 11:05:49 +0200 Subject: [PATCH] [17.05] Bug 19260: [QA Follow-up] Remove obsolete $dbh The variable is no longer used. Removed a few empty lines on the way. Signed-off-by: Marcel de Rooy --- C4/Reserves.pm | 5 ----- 1 file changed, 5 deletions(-) diff --git a/C4/Reserves.pm b/C4/Reserves.pm index be144d2..d763937 100644 --- a/C4/Reserves.pm +++ b/C4/Reserves.pm @@ -876,17 +876,12 @@ Cancels all reserves with an expiration date from before today. =cut sub CancelExpiredReserves { - my $today = dt_from_string(); my $cancel_on_holidays = C4::Context->preference('ExpireReservesOnHolidays'); my $expireWaiting = C4::Context->preference('ExpireReservesMaxPickUpDelay'); - my $dbh = C4::Context->dbh; - my $dtf = Koha::Database->new->schema->storage->datetime_parser; - my $params = { expirationdate => { '<', $dtf->format_date($today) } }; - $params->{found} = undef unless $expireWaiting; # FIXME To move to Koha::Holds->search_expired (?) -- 2.1.4