From 300f8190be5497726044a7f50ecb897278357ef9 Mon Sep 17 00:00:00 2001 From: Nick Clemens Date: Fri, 26 May 2023 14:44:05 +0000 Subject: [PATCH] Bug 33788: Limit the number of old issues rows returned This patch updates the parameter from 'limit' to 'rows' To test: 1 - Checkout an item to 5 different people 2 - View item details on items tab of record 3 - Note you see last borrower, and three previous borrowers 4 - Apply patch, restart all 5 - Refresh page 6 - You shoulw now only see last borrower and 2 previous borrowers --- catalogue/moredetail.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/catalogue/moredetail.pl b/catalogue/moredetail.pl index 787bac26b3..5997a8b827 100755 --- a/catalogue/moredetail.pl +++ b/catalogue/moredetail.pl @@ -243,7 +243,7 @@ foreach my $item (@items){ { itemnumber => $item->itemnumber }, { order_by => { '-desc' => 'returndate' }, - limit => 3 + rows => 3 } ); -- 2.30.2