From 228c2841b23c7935f5d86a2ce0cdc087e2473593 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 d2dfe1ad56..e3867eea4c 100755 --- a/misc/migration_tools/bulkmarcimport.pl +++ b/misc/migration_tools/bulkmarcimport.pl @@ -351,6 +351,7 @@ RECORD: while ( ) { } } elsif ( $results && scalar(@$results) > 1 ) { $logger->debug("more than one match for $query"); + next; } else { $logger->debug("nomatch for $query"); } -- 2.30.2