mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-21 11:29:24 +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
|
||||
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);
|
||||
|
Loading…
Reference in New Issue
Block a user