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

(-)a/Koha/Biblio.pm (-3 / +1 lines)
Lines 984-991 sub get_marc_authors { Link Here
984
    # tagslib useful only for UNIMARC author responsibilities
984
    # tagslib useful only for UNIMARC author responsibilities
985
    my $tagslib;
985
    my $tagslib;
986
    if ( $marcflavour eq "UNIMARC" ) {
986
    if ( $marcflavour eq "UNIMARC" ) {
987
        # FIXME : we don't have the framework available, we take the default framework. May be buggy on some setups, will be usually correct.
987
        $tagslib = C4::Biblio::GetMarcStructure( 1, $self->frameworkcode, { unsafe => 1 });
988
        $tagslib = C4::Biblio::GetMarcStructure( 1, '', { unsafe => 1 });
989
        $mintag = "700";
988
        $mintag = "700";
990
        $maxtag = "712";
989
        $maxtag = "712";
991
        $fields_filter = '7..';
990
        $fields_filter = '7..';
992
- 

Return to bug 27266