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

(-)a/opac/opac-reserve.pl (-6 / +2 lines)
Lines 237-248 if ( $query->param('place_reserve') ) { Link Here
237
            }
237
            }
238
        }
238
        }
239
239
240
#item may belong to a host biblio, if yes change biblioNum to hosts bilbionumber
240
        # if we have an item, we are placing the hold on the item's bib, in case of analytics
241
        if ( $item ) {
241
        if ( $item ) {
242
            my $hostbiblioNum = $item->biblio->biblionumber;
242
            $biblioNum = $item->biblionumber;
243
            if ( $hostbiblioNum ne $biblioNum ) {
244
                $biblioNum = $hostbiblioNum;
245
            }
246
        }
243
        }
247
244
248
        my $biblioData = $biblioDataHash{$biblioNum};
245
        my $biblioData = $biblioDataHash{$biblioNum};
249
- 

Return to bug 30847