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 |
- |
|
|