* Fix bug ID #28926

git-svn-id: trunk@32350 -
This commit is contained in:
michael 2015-11-16 20:29:28 +00:00
parent 69d9a7a2de
commit 5a7080b3b7

View File

@ -353,7 +353,7 @@ procedure TCGIRequest.InitFromEnvironment;
Var
I : Integer;
V,OV : String;
R,V,OV : String;
M : TMap;
begin
@ -373,7 +373,9 @@ begin
end;
end;
end;
ReadContent;
R:=UpCase(Method);
if (R='POST') or (R='PUT') or (ContentLength>0) then
ReadContent;
end;
procedure TCGIRequest.ReadContent;