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

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

Return to bug 30847