Bug 22721: Remove frameworkcode parameter in GetMarcFromKohaField calls
[koha-equinox.git] / misc / batchRebuildBiblioTables.pl
index f9bd218..d66c4ce 100755 (executable)
@@ -53,7 +53,7 @@ $|=1; # flushes output
 $starttime = gettimeofday;
 
 #1st of all, find item MARC tag.
-my ($tagfield,$tagsubfield) = &GetMarcFromKohaField("items.itemnumber",'');
+my ($tagfield,$tagsubfield) = &GetMarcFromKohaField( "items.itemnumber" );
 # $dbh->do("lock tables biblio write, biblioitems write, items write, marc_biblio write, marc_subfield_table write, marc_blob_subfield write, marc_word write, marc_subfield_structure write");
 my $sth = $dbh->prepare("SELECT biblionumber FROM biblio");
 $sth->execute;