X-Git-Url: http://koha-dev.rot13.org:8081/gitweb/?a=blobdiff_plain;f=misc%2FbatchRebuildBiblioTables.pl;h=5db801bbc10d15512b6155d05948c08c7e5a18a3;hb=d5986c9b972e6634fbc3f52e544316ed607eb502;hp=dc4175c61f0d56a1eb1712af33236d3d8775268e;hpb=b08913370f77fcc1c574d9c0264f0523b6e2a53b;p=srvgit diff --git a/misc/batchRebuildBiblioTables.pl b/misc/batchRebuildBiblioTables.pl index dc4175c61f..5db801bbc1 100755 --- a/misc/batchRebuildBiblioTables.pl +++ b/misc/batchRebuildBiblioTables.pl @@ -61,7 +61,7 @@ $sth->execute; my @errors; while (my ($biblionumber)= $sth->fetchrow) { #now, parse the record, extract the item fields, and store them in somewhere else. - my $record = GetMarcBiblio($biblionumber); + my $record = GetMarcBiblio({ biblionumber => $biblionumber }); if (not defined $record) { push @errors, $biblionumber; next;