From 5c104d74394108c7c7b3274aeff0a5468830125f Mon Sep 17 00:00:00 2001 From: Marcel de Rooy Date: Wed, 25 Jun 2025 15:47:45 +0200 Subject: [PATCH] Bug 40242: Remove double operator in Quotes.pm Content-Type: text/plain; charset=utf-8 Test plan: Read patch. Run t/db_dependent/Koha/Quotes.t Signed-off-by: Marcel de Rooy --- Koha/Quotes.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Koha/Quotes.pm b/Koha/Quotes.pm index 95eccd50d4..9dadb5de8d 100644 --- a/Koha/Quotes.pm +++ b/Koha/Quotes.pm @@ -71,7 +71,7 @@ sub get_daily_quote { my $dt = $dtf->format_date(dt_from_string); $quote = $self->search( { - timestamp => { -between => => [ "$dt 00:00:00", "$dt 23:59:59" ] }, + timestamp => { -between => [ "$dt 00:00:00", "$dt 23:59:59" ] }, }, { order_by => { -desc => 'timestamp' }, -- 2.39.5