From 9aa0022d57bceecc50402d2e090a79558d194578 Mon Sep 17 00:00:00 2001 From: Matthias Meusburger Date: Wed, 15 Mar 2017 16:10:45 +0000 Subject: [PATCH] Bug 18273: Do not insert authority if there already are duplicates in koha --- misc/migration_tools/bulkmarcimport.pl | 1 + 1 file changed, 1 insertion(+) diff --git a/misc/migration_tools/bulkmarcimport.pl b/misc/migration_tools/bulkmarcimport.pl index 34d2b52..8c7fbc2 100755 --- a/misc/migration_tools/bulkmarcimport.pl +++ b/misc/migration_tools/bulkmarcimport.pl @@ -316,6 +316,7 @@ RECORD: while ( ) { } } elsif ( $results && scalar(@$results) > 1 ) { $debug && warn "more than one match for $query"; + next; } else { $debug && warn "nomatch for $query"; } -- 2.7.4