* Patch to extend earlier fix for ISS in CGI to FastCGI (bug ID 30073)

git-svn-id: trunk@34466 -
This commit is contained in:
michael 2016-09-09 06:06:15 +00:00
parent d4b581c10a
commit ccee64600e

View File

@ -354,6 +354,9 @@ begin
else
NameValueList.Add(Name+'='+Value)
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;
procedure TFCGIRequest.Log(EventType: TEventType; const Msg: String);