From 472a4cf11fcbef974176ad4d4f8bae6af481686d Mon Sep 17 00:00:00 2001 From: Henri-Damien LAURENT Date: Thu, 1 Oct 2009 09:46:03 +0200 Subject: [PATCH] Followup : fb4366cdad0ad96d0427810581763dc2fc189af1 $input->{filecontent} used where never defined Replacing with $input->param("filecontent") --- tools/batchMod.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/batchMod.pl b/tools/batchMod.pl index bb6300f06a..47de0e9454 100755 --- a/tools/batchMod.pl +++ b/tools/batchMod.pl @@ -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){ -- 2.20.1