Browse Source

* Commented out some debug-code which causes problems on windows

git-svn-id: trunk@8293 -
joost 18 years ago
parent
commit
bc5225b8ae
1 changed files with 4 additions and 2 deletions
  1. 4 2
      packages/fcl-web/src/custcgi.pp

+ 4 - 2
packages/fcl-web/src/custcgi.pp

@@ -414,13 +414,15 @@ begin
       I.Free;
     end;
     M.Position:=0;
-    With TFileStream.Create('/tmp/query',fmCreate) do
+// joost, aug 20th: I've removed this. It doesn't work with windows and I think
+// it's a debug-only thing...
+{    With TFileStream.Create('/tmp/query',fmCreate) do
       try
         CopyFrom(M,0);
         M.Position:=0;
       Finally
         Free;
-      end;
+      end;}
     CT:=ContentType;
     if Pos('MULTIPART/FORM-DATA',Uppercase(CT))<>0 then
       ProcessMultiPart(M,CT)