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

(-)a/C4/Record.pm (-2 / +1 lines)
Lines 461-467 sub marcrecord2csv { Link Here
461
    # Getting the record
461
    # Getting the record
462
    my $biblio = Koha::Biblios->find($biblionumber);
462
    my $biblio = Koha::Biblios->find($biblionumber);
463
    return unless $biblio;
463
    return unless $biblio;
464
    my $record = eval { $biblio->metadata_record( { embed_items => 1, itemnumbers => $itemnumbers } ); };
464
    my $record = eval { $biblio->metadata->record( { embed_items => 1, itemnumbers => $itemnumbers } ); };
465
    return unless $record;
465
    return unless $record;
466
466
467
    # Getting the framework
467
    # Getting the framework
468
- 

Return to bug 31224