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

(-)a/Koha/Biblio.pm (-3 / +1 lines)
Lines 860-867 sub get_marc_authors { Link Here
860
    # tagslib useful only for UNIMARC author responsibilities
860
    # tagslib useful only for UNIMARC author responsibilities
861
    my $tagslib;
861
    my $tagslib;
862
    if ( $marcflavour eq "UNIMARC" ) {
862
    if ( $marcflavour eq "UNIMARC" ) {
863
        # FIXME : we don't have the framework available, we take the default framework. May be buggy on some setups, will be usually correct.
863
        $tagslib = C4::Biblio::GetMarcStructure( 1, $self->frameworkcode, { unsafe => 1 });
864
        $tagslib = C4::Biblio::GetMarcStructure( 1, '', { unsafe => 1 });
865
        $mintag = "700";
864
        $mintag = "700";
866
        $maxtag = "712";
865
        $maxtag = "712";
867
        $fields_filter = '7..';
866
        $fields_filter = '7..';
868
- 

Return to bug 27266