Bug 5205 Fix compile time warnings in tools/batchMod.pl
authorColin Campbell <colin.campbell@ptfs-europe.com>
Wed, 8 Sep 2010 13:30:15 +0000 (14:30 +0100)
committerGalen Charlton <gmcharlt@gmail.com>
Wed, 6 Oct 2010 09:59:10 +0000 (05:59 -0400)
$dbh was declared twice
prototypes used in a subroutine that was not declared before use

Signed-off-by: Galen Charlton <gmcharlt@gmail.com>
tools/batchMod.pl

index f5138d1..5271d81 100755 (executable)
@@ -82,7 +82,6 @@ my @not_deleted;           # List of the itemnumbers that could not be deleted
 
 my %cookies = parse CGI::Cookie($cookie);
 my $sessionID = $cookies{'CGISESSID'}->value;
-my $dbh = C4::Context->dbh;
 
 
 #--- ----------------------------------------------------------------------------
@@ -492,7 +491,7 @@ sub BuildItemsData{
 # Where subfield is not repeated
 # And where we are sure that field should correspond
 # And $tag>10
-sub UpdateMarcWith($$){
+sub UpdateMarcWith {
   my ($marcfrom,$marcto)=@_;
   #warn "FROM :",$marcfrom->as_formatted;
        my (  $itemtag,   $itemtagsubfield) = &GetMarcFromKohaField("items.itemnumber", "");