(bug #3819) variable name typo
authorNahuel ANGELINETTI <nahuel.angelinetti@biblibre.com>
Thu, 3 Dec 2009 09:16:51 +0000 (10:16 +0100)
committerHenri-Damien LAURENT <henridamien.laurent@biblibre.com>
Thu, 3 Dec 2009 21:00:10 +0000 (22:00 +0100)
This patch fix variable name in opac, that made koha fatal error.

Signed-off-by: Henri-Damien LAURENT <henridamien.laurent@biblibre.com>
opac/opac-reserve.pl

index 9842e71..194a28e 100755 (executable)
@@ -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;
         }