From 0d857802010cb7ea5317e16fa8274c1d9bd3421e Mon Sep 17 00:00:00 2001 From: Nahuel ANGELINETTI Date: Thu, 3 Dec 2009 10:16:51 +0100 Subject: [PATCH] (bug #3819) variable name typo This patch fix variable name in opac, that made koha fatal error. Signed-off-by: Henri-Damien LAURENT --- opac/opac-reserve.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/opac/opac-reserve.pl b/opac/opac-reserve.pl index 9842e71d16..194a28e2c8 100755 --- a/opac/opac-reserve.pl +++ b/opac/opac-reserve.pl @@ -331,11 +331,11 @@ foreach my $biblioitemnumber (@biblioitemnumbers) { # If there is no loan, return and transfer, we show a checkbox. $item->{notforloan} = $item->{notforloan} || 0; - my $branchitemrule = GetBranchItemRule( $borr->{'branchcode'}, $itemInfo->{'itype'} ); + my $branchitemrule = GetBranchItemRule( $borr->{'branchcode'}, $item->{'itemtype'} ); my $policy_holdallowed = 1; if ( $branchitemrule->{'holdallowed'} == 0 || - ( $branchitemrule->{'holdallowed'} == 1 && $borr->{'branchcode'} ne $itemInfo->{'homebranch'} ) ) { + ( $branchitemrule->{'holdallowed'} == 1 && $borr->{'branchcode'} ne $item->{'homebranch'} ) ) { $policy_holdallowed = 0; } -- 2.20.1