@@ -, +, @@ --- opac/opac-reserve.pl | 4 ---- 1 file changed, 4 deletions(-) --- a/opac/opac-reserve.pl +++ a/opac/opac-reserve.pl @@ -136,7 +136,6 @@ $template->param( branch => $branch ); # my %biblioDataHash; # Hash of biblionumber to biblio/biblioitems record. -my %itemInfoHash; # Hash of itemnumber to item info. foreach my $biblioNumber (@biblionumbers) { my $biblioData = GetBiblioData($biblioNumber); @@ -154,9 +153,6 @@ foreach my $biblioNumber (@biblionumbers) { } $biblioData->{itemInfos} = \@itemInfos; - foreach my $itemInfo (@itemInfos) { - $itemInfoHash{$itemInfo->{itemnumber}} = $itemInfo; - } # Compute the priority rank. my $biblio = Koha::Biblios->find( $biblioNumber ); --