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

(-)a/C4/AuthoritiesMarc.pm (-3 / +4 lines)
Lines 359-366 sub SearchAuthorities { Link Here
359
                    }
359
                    }
360
                }
360
                }
361
                my $thisauthtype = GetAuthType(GetAuthTypeCode($authid));
361
                my $thisauthtype = GetAuthType(GetAuthTypeCode($authid));
362
                $thisauthtype |= GetAuthType($authtypecode) if $authtypecode;
362
                unless (defined $thisauthtype) {
363
                $newline{authtype}     = defined ($thisauthtype) ?
363
                    $thisauthtype = GetAuthType($authtypecode) if $authtypecode;
364
                }
365
                $newline{authtype}     = defined($thisauthtype) ?
364
                                            $thisauthtype->{'authtypetext'} : '';
366
                                            $thisauthtype->{'authtypetext'} : '';
365
                $newline{summary}      = $summary;
367
                $newline{summary}      = $summary;
366
                $newline{even}         = $counter % 2;
368
                $newline{even}         = $counter % 2;
367
- 

Return to bug 9070