mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-12 20:29:23 +02:00
* Patch to extend earlier fix for ISS in CGI to FastCGI (bug ID 30073)
git-svn-id: trunk@34466 -
This commit is contained in:
parent
d4b581c10a
commit
ccee64600e
@ -354,6 +354,9 @@ begin
|
|||||||
else
|
else
|
||||||
NameValueList.Add(Name+'='+Value)
|
NameValueList.Add(Name+'='+Value)
|
||||||
end;
|
end;
|
||||||
|
// Microsoft-IIS hack. IIS includes the script name in the PATH_INFO
|
||||||
|
if Pos('IIS', ServerSoftware) > 0 then
|
||||||
|
SetHTTPVariable(hvPathInfo,StringReplace(PathInfo, ScriptName, '', [rfReplaceAll, rfIgnoreCase]));
|
||||||
end;
|
end;
|
||||||
|
|
||||||
procedure TFCGIRequest.Log(EventType: TEventType; const Msg: String);
|
procedure TFCGIRequest.Log(EventType: TEventType; const Msg: String);
|
||||||
|
Loading…
Reference in New Issue
Block a user