From 6208026054a52da73fcd0d90b05ddcef5f8901ff Mon Sep 17 00:00:00 2001 From: Christophe Croullebois Date: Mon, 10 Jun 2019 14:11:47 +0200 Subject: [PATCH 1/1] Bug 23067: show the holdingbranch in opac-reserve --- opac/opac-reserve.pl | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/opac/opac-reserve.pl b/opac/opac-reserve.pl index 472d0f5..c81be5f 100755 --- a/opac/opac-reserve.pl +++ b/opac/opac-reserve.pl @@ -467,11 +467,8 @@ foreach my $biblioNum (@biblionumbers) { $itemLoopIter->{imageurl} = $itemInfo->{imageurl}; } - # If the holdingbranch is different than the homebranch, we show the - # holdingbranch of the document too. - if ( $itemInfo->{homebranch} ne $itemInfo->{holdingbranch} ) { - $itemLoopIter->{holdingBranchName} = $itemInfo->{holdingbranch}; - } + # we show the holdingbranch of the document. + $itemLoopIter->{holdingBranchName} = $itemInfo->{holdingbranch}; # If the item is currently on loan, we display its return date and # change the background color. -- 2.7.4