From b09edbe5b9cf37eb509a04d306a26efbe2ac461a Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Thu, 17 Sep 2015 09:03:59 +0100 Subject: [PATCH] Bug 14842: Wrong call to GetBranchItemRule Content-Type: text/plain; charset=utf-8 From bug 7981: GetBranchItemRule expects an itemtype, a scalar. Here $itemtype is a hashref returned by C4::ItemType->get. So $itemtype->{itemtype} should be passed. Signed-off-by: Marcel de Rooy --- circ/returns.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/circ/returns.pl b/circ/returns.pl index ec0679f..637f4b2 100755 --- a/circ/returns.pl +++ b/circ/returns.pl @@ -276,7 +276,7 @@ if ($barcode) { } # make sure return branch respects home branch circulation rules, default to homebranch - my $hbr = GetBranchItemRule($biblio->{'homebranch'}, $itemtype)->{'returnbranch'} || "homebranch"; + my $hbr = GetBranchItemRule($biblio->{'homebranch'}, $itemtype->{itemtype})->{'returnbranch'} || "homebranch"; my $returnbranch = $biblio->{$hbr} ; $template->param( -- 1.7.10.4