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

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

Return to bug 30847