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 |
- |
|
|