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