[Koha-patches] [PATCH] Bug 5205 Fix compile time warnings in tools/batchMod.pl

Colin Campbell colin.campbell at ptfs-europe.com
Wed Sep 8 15:30:15 CEST 2010


$dbh was declared twice
prototypes used in a subroutine that was not declared before use
---
 tools/batchMod.pl |    3 +--
 1 files changed, 1 insertions(+), 2 deletions(-)

diff --git a/tools/batchMod.pl b/tools/batchMod.pl
index f5138d1..5271d81 100755
--- a/tools/batchMod.pl
+++ b/tools/batchMod.pl
@@ -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", "");
-- 
1.7.2.2



More information about the Koha-patches mailing list