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

(-)a/Koha/Biblio.pm (-3 / +1 lines)
Lines 870-877 sub get_marc_authors { Link Here
870
    # tagslib useful only for UNIMARC author responsibilities
870
    # tagslib useful only for UNIMARC author responsibilities
871
    my $tagslib;
871
    my $tagslib;
872
    if ( $marcflavour eq "UNIMARC" ) {
872
    if ( $marcflavour eq "UNIMARC" ) {
873
        # FIXME : we don't have the framework available, we take the default framework. May be buggy on some setups, will be usually correct.
873
        $tagslib = C4::Biblio::GetMarcStructure( 1, $self->frameworkcode, { unsafe => 1 });
874
        $tagslib = C4::Biblio::GetMarcStructure( 1, '', { unsafe => 1 });
875
        $mintag = "700";
874
        $mintag = "700";
876
        $maxtag = "712";
875
        $maxtag = "712";
877
        $fields_filter = '7..';
876
        $fields_filter = '7..';
878
- 

Return to bug 27266