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

(-)a/C4/Matcher.pm (-3 / +5 lines)
Lines 721-728 sub get_matches { Link Here
721
                        ( $biblionumber_tag > 10 )
721
                        ( $biblionumber_tag > 10 )
722
                        ? $target_record->field($biblionumber_tag)->subfield($biblionumber_subfield)
722
                        ? $target_record->field($biblionumber_tag)->subfield($biblionumber_subfield)
723
                        : $target_record->field($biblionumber_tag)->data();
723
                        : $target_record->field($biblionumber_tag)->data();
724
                    $matches->{$id}->{score} += $matchpoint->{score};
724
                    my $biblio = Koha::Biblio->find($id);
725
                    $matches->{$id}->{record} = $target_record;
725
                    if ($biblio){
726
                        $matches->{$id}->{score} += $matchpoint->{score};
727
                        $matches->{$id}->{record} = $target_record;
728
                    }
726
                }
729
                }
727
            }
730
            }
728
731
729
- 

Return to bug 39436