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

(-)a/C4/Items.pm (-2 / +5 lines)
Lines 1199-1206 references on array of itemnumbers. Link Here
1199
1199
1200
sub get_hostitemnumbers_of {
1200
sub get_hostitemnumbers_of {
1201
    my ($biblionumber) = @_;
1201
    my ($biblionumber) = @_;
1202
    my $marcrecord = C4::Biblio::GetMarcBiblio({ biblionumber => $biblionumber });
1203
1202
1203
    if( !C4::Context->preference('EasyAnalyticalRecords') ) {
1204
        return ();
1205
    }
1206
1207
    my $marcrecord = C4::Biblio::GetMarcBiblio({ biblionumber => $biblionumber });
1204
    return unless $marcrecord;
1208
    return unless $marcrecord;
1205
1209
1206
    my ( @returnhostitemnumbers, $tag, $biblio_s, $item_s );
1210
    my ( @returnhostitemnumbers, $tag, $biblio_s, $item_s );
1207
- 

Return to bug 22140