View | Details | Raw Unified | Return to bug 15565
Collapse All | Expand All

(-)a/opac/opac-reserve.pl (-2 / +1 lines)
Lines 238-244 if ( $query->param('place_reserve') ) { Link Here
238
                my $biblionumber = $biblioNum;
238
                my $biblionumber = $biblioNum;
239
239
240
                #item may belong to a host biblio, if yes change biblioNum to hosts bilbionumber
240
                #item may belong to a host biblio, if yes change biblioNum to hosts bilbionumber
241
                my $hostbiblioNum = GetBiblionumberFromItemnumber($itemnumber);
241
                my $hostbiblioNum = Koha::Items->find( $itemnumber )->biblio->biblionumber;
242
                if ( $hostbiblioNum ne $biblioNum ) {
242
                if ( $hostbiblioNum ne $biblioNum ) {
243
                    $biblionumber = $hostbiblioNum;
243
                    $biblionumber = $hostbiblioNum;
244
                }
244
                }
245
- 

Return to bug 15565