Followup : fb4366cdad0ad96d0427810581763dc2fc189af1
authorHenri-Damien LAURENT <henridamien.laurent@biblibre.com>
Thu, 1 Oct 2009 07:46:03 +0000 (09:46 +0200)
committerHenri-Damien LAURENT <henridamien.laurent@biblibre.com>
Thu, 1 Oct 2009 08:48:26 +0000 (10:48 +0200)
 $input->{filecontent} used where never defined
 Replacing with $input->param("filecontent")

tools/batchMod.pl

index bb6300f..47de0e9 100755 (executable)
@@ -114,7 +114,7 @@ if ($op eq "action") {
 
 if ($op eq "show"){
        my $filefh = $input->upload('uploadfile');
-       my $filecontent = $input->{'filecontent'};
+       my $filecontent = $input->param('filecontent');
 
     my @contentlist;
     if ($filefh){