From: Stefano Zacchiroli Date: Mon, 5 Mar 2001 10:31:12 +0000 (+0000) Subject: Fixed a bug in CGI creation, method "update" now work ! :) X-Git-Tag: v0_1_2~101 X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=commitdiff_plain;h=420257677b646f2598ad166408b13d18d552f37d;p=helm.git Fixed a bug in CGI creation, method "update" now work ! :) --- diff --git a/helm/http_getter/http_getter.pl.in b/helm/http_getter/http_getter.pl.in index ec2814e48..0c1dacac5 100755 --- a/helm/http_getter/http_getter.pl.in +++ b/helm/http_getter/http_getter.pl.in @@ -97,7 +97,7 @@ while (my $c = $d->accept) { my $http_method = $r->method; my $http_path = $r->url->path; my $http_query = uri_unescape($r->url->query); - my $cgi = new CGI($http_query); + my $cgi = new CGI("$http_query"); print "\nUnescaped query: ".$http_query."\n";