Browse Source

Bug 11399: QA fixes

Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>
Signed-off-by: Tomas Cohen Arazi <tomascohen@gmail.com>
3.20.x
Stéphane Delaune 10 years ago
committed by Tomas Cohen Arazi
parent
commit
709488b8b6
  1. 10
      misc/batchRebuildItemsTables.pl

10
misc/batchRebuildItemsTables.pl

@ -1,7 +1,5 @@
#!/usr/bin/perl
use 5.10.0;
use strict;
use warnings;
use Modern::Perl;
use Getopt::Long;
use C4::Context;
use C4::Biblio;
@ -94,8 +92,10 @@ while ( my ( $biblionumber, $biblioitemnumber, $frameworkcode ) = $sth->fetchrow
}
}
$dbh->do("UPDATE systempreferences SET value=$CataloguingLog WHERE variable='CataloguingLog'");
$dbh->do("UPDATE systempreferences SET value=$dontmerge where variable='dontmerge'");
my $sthCataloguingLog = $dbh->prepare("UPDATE systempreferences SET value=? WHERE variable='CataloguingLog'");
$sthCataloguingLog->execute($CataloguingLog);
my $sthdontmerge = $dbh->prepare("UPDATE systempreferences SET value=? WHERE variable='dontmerge'");
$sthdontmerge->execute($dontmerge);
$dbh->commit() unless $test_parameter;
my $timeneeded = time() - $starttime;
print "$count MARC record done in $timeneeded seconds\n";

Loading…
Cancel
Save