Browse Source

Bug 20811: (RM follow-up) fix check for matching

Notice should only be triggered if both settings are false

Signed-off-by: Nick Clemens <nick@bywatersolutions.com>
18.11.x
Nick Clemens 6 years ago
parent
commit
12b505f2b7
  1. 2
      misc/migration_tools/bulkmarcimport.pl

2
misc/migration_tools/bulkmarcimport.pl

@ -100,7 +100,7 @@ if ($version || ($input_marc_file eq '')) {
pod2usage( -verbose => 2 );
exit;
}
if( $update && ( !$match || $isbn_check ) ) {
if( $update && !( $match || $isbn_check ) ) {
warn "Using -update without -match or -isbn seems to be useless.\n";
}

Loading…
Cancel
Save