From 29efdfc9af72315f8886b7755d6d6f3c6516a427 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Fri, 5 Jun 2020 16:59:10 +0200 Subject: [PATCH] Bug 25266: Remove uneeded var Signed-off-by: Alex Arnaud Signed-off-by: Jonathan Druart (cherry picked from commit 14c5512306c2e0c6fc21bbd378cc5bff0169ec68) Signed-off-by: Lucas Gass --- acqui/lateorders.pl | 9 --------- 1 file changed, 9 deletions(-) diff --git a/acqui/lateorders.pl b/acqui/lateorders.pl index 65d47033e5..565d6b5c5a 100755 --- a/acqui/lateorders.pl +++ b/acqui/lateorders.pl @@ -123,15 +123,6 @@ if ($op and $op eq "send_alert"){ } } -my @parameters = ( $delay ); -push @parameters, $estimateddeliverydatefrom_dt - ? $estimateddeliverydatefrom_dt->ymd() - : undef; - -push @parameters, $estimateddeliverydateto_dt - ? $estimateddeliverydateto_dt->ymd() - : undef; - my @lateorders = Koha::Acquisition::Orders->filter_by_lates( { delay => $delay, -- 2.39.5