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

(-)a/opac/opac-reserve.pl (-2 / +1 lines)
Lines 253-259 if ( $query->param('place_reserve') ) { Link Here
253
                my $biblionumber = $biblioNum;
253
                my $biblionumber = $biblioNum;
254
254
255
                #item may belong to a host biblio, if yes change biblioNum to hosts bilbionumber
255
                #item may belong to a host biblio, if yes change biblioNum to hosts bilbionumber
256
                my $hostbiblioNum = GetBiblionumberFromItemnumber($itemnumber);
256
                my $hostbiblioNum = Koha::Items->find( $itemnumber )->biblio->biblionumber;
257
                if ( $hostbiblioNum ne $biblioNum ) {
257
                if ( $hostbiblioNum ne $biblioNum ) {
258
                    $biblionumber = $hostbiblioNum;
258
                    $biblionumber = $hostbiblioNum;
259
                }
259
                }
260
- 

Return to bug 15565