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

(-)a/cataloguing/addbiblio.pl (-3 / +3 lines)
Lines 94-102 sub MARCfindbreeding { Link Here
94
            return -1;
94
            return -1;
95
        }
95
        }
96
        else {
96
        else {
97
            # normalize author : probably UNIMARC specific...
97
            # normalize author : UNIMARC specific...
98
            if (    C4::Context->preference("z3950NormalizeAuthor")
98
            if (    C4::Context->preference("z3950NormalizeAuthor")
99
                and C4::Context->preference("z3950AuthorAuthFields") )
99
                and C4::Context->preference("z3950AuthorAuthFields")
100
                and C4::Context->preference("marcflavour") eq 'UNIMARC' )
100
            {
101
            {
101
                my ( $tag, $subfield ) = GetMarcFromKohaField("biblio.author", '');
102
                my ( $tag, $subfield ) = GetMarcFromKohaField("biblio.author", '');
102
103
103
- 

Return to bug 5333