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

(-)a/C4/Matcher.pm (-2 / +1 lines)
Lines 634-640 sub get_matches { Link Here
634
        next if scalar(@source_keys) == 0;
634
        next if scalar(@source_keys) == 0;
635
635
636
        @source_keys = C4::Koha::GetVariationsOfISBNs(@source_keys)
636
        @source_keys = C4::Koha::GetVariationsOfISBNs(@source_keys)
637
          if ( $matchpoint->{index} eq 'isbn'
637
          if ( $matchpoint->{index} =~ /^isbn$/i
638
            && C4::Context->preference('AggressiveMatchOnISBN') );
638
            && C4::Context->preference('AggressiveMatchOnISBN') );
639
639
640
        # build query
640
        # build query
641
- 

Return to bug 10500