Browse Source

* Do not decode the URL before passing it on

git-svn-id: trunk@21871 -
michael 13 years ago
parent
commit
ffc3164594
1 changed files with 1 additions and 1 deletions
  1. 1 1
      packages/fcl-web/src/base/fphttpclient.pp

+ 1 - 1
packages/fcl-web/src/base/fphttpclient.pp

@@ -738,7 +738,7 @@ Var
 
 begin
   FResponseHeaders.Clear;
-  URI:=ParseURI(AURL);
+  URI:=ParseURI(AURL,False);
   If (Lowercase(URI.Protocol)<>'http') then
    Raise EHTTPClient.CreateFmt(SErrInvalidProtocol,[URI.Protocol]);
   ConnectToServer(URI.Host,URI.Port);