$input->{filecontent} used where never defined
 Replacing with $input->param("filecontent")
This commit is contained in:
Henri-Damien LAURENT 2009-10-01 09:46:03 +02:00
parent b18661529f
commit 472a4cf11f

View file

@ -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){