From 82d0021cd854787127ffdb42c769919ddb41dcdc Mon Sep 17 00:00:00 2001 From: Nick Clemens Date: Wed, 31 May 2023 12:06:20 +0000 Subject: [PATCH] Bug 33497: (follow-up) Adjust relationship name from bug 33493 Signed-off-by: Jonathan Druart Signed-off-by: Tomas Cohen Arazi --- catalogue/detail.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/catalogue/detail.pl b/catalogue/detail.pl index 6b06f286cd..eb609bd6f2 100755 --- a/catalogue/detail.pl +++ b/catalogue/detail.pl @@ -193,7 +193,7 @@ my $itemtypes = { map { $_->itemtype => $_ } @{ Koha::ItemTypes->search_with_loc my $params; my $patron = Koha::Patrons->find( $borrowernumber ); $params->{ itemlost } = 0 if $patron->category->hidelostitems && !$showallitems; -my $items = $biblio->items({ host_items => 1 })->search_ordered( $params, { prefetch => ['issue','branchtransfer'] } ); +my $items = $biblio->items({ host_items => 1 })->search_ordered( $params, { prefetch => ['issue','current_branchtransfers'] } ); # flag indicating existence of at least one item linked via a host record my $hostrecords = $biblio->host_items->count; -- 2.20.1