From 06cd3ff31018138ae4319f5aeecd008dad249547 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Wed, 28 May 2014 10:03:52 +0200 Subject: [PATCH] Bug 11169: Fix branch name --- opac/opac-detail.pl | 1 + 1 file changed, 1 insertion(+) diff --git a/opac/opac-detail.pl b/opac/opac-detail.pl index de1a736..0aef908 100755 --- a/opac/opac-detail.pl +++ b/opac/opac-detail.pl @@ -675,6 +675,7 @@ if ( not $viewallitems and @items > $max_items_to_display ) { if ( C4::Context->preference('OPACAcquisitionDetails') and C4::Context->preference('AcqCreateItem') eq 'ordering' ) { + $itm->{branchname} = C4::Branch::GetBranchName( $itm->{holdingbranch} ); $itm->{on_order} = 1 if grep /^$itm->{itemnumber}$/, @itemnumbers_on_order; } -- 2.0.0.rc2