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

(-)a/C4/Biblio.pm (-1 / +4 lines)
Lines 751-756 sub LinkBibHeadingsToAuthorities { Link Here
751
                    push(@{$results{'details'}}, { tag => $field->tag(), authid => undef, status => 'NONE_FOUND', auth_type => $heading->auth_type(), tag_to_report => $authority_type->auth_tag_to_report}) if $verbose;
751
                    push(@{$results{'details'}}, { tag => $field->tag(), authid => undef, status => 'NONE_FOUND', auth_type => $heading->auth_type(), tag_to_report => $authority_type->auth_tag_to_report}) if $verbose;
752
                }
752
                }
753
            }
753
            }
754
            elsif ( $match_count > 1 ) {
755
                $results{'unlinked'}->{ $heading->display_form() }++;
756
                push(@{$results{'details'}}, { tag => $field->tag(), authid => undef, status => 'MULTIPLE_MATCH', auth_type => $heading->auth_type(), tag_to_report => $authority_type->auth_tag_to_report}) if $verbose;
757
            }
754
            else {
758
            else {
755
                $results{'unlinked'}->{ $heading->display_form() }++;
759
                $results{'unlinked'}->{ $heading->display_form() }++;
756
                push(@{$results{'details'}}, { tag => $field->tag(), authid => undef, status => 'NONE_FOUND', auth_type => $heading->auth_type(), tag_to_report => $authority_type->auth_tag_to_report}) if $verbose;
760
                push(@{$results{'details'}}, { tag => $field->tag(), authid => undef, status => 'NONE_FOUND', auth_type => $heading->auth_type(), tag_to_report => $authority_type->auth_tag_to_report}) if $verbose;
757
- 

Return to bug 31185