--- trunk/all2xml.pl 2006/06/06 12:34:25 747 +++ trunk/all2xml.pl 2006/10/29 16:34:25 750 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use strict; -use Biblio::Isis; +use Biblio::Isis 0.23; use Getopt::Std; use Data::Dumper; use XML::Simple; @@ -785,7 +785,10 @@ my $isis_db = $cfg -> val($database, 'isis_db') || die "$database doesn't have 'isis_db' defined!"; $import2cp = Text::Iconv->new($config->{isis_codepage},$codepage); - my $db = new Biblio::Isis( isisdb => $isis_db ); + my $db = new Biblio::Isis( + isisdb => $isis_db, + join_subfields_with => ' ; ', + ); if (! $db) { print STDERR "FATAL: can't read ISIS database: $isis_db, skipping...\n";