* Fix to fill in Accept HTTP header (By Mark van Ham, bug #25621)

git-svn-id: trunk@26585 -
This commit is contained in:
michael 2014-01-26 12:29:26 +00:00
parent 0ea0b5c34d
commit 92187d7045

View File

@ -883,7 +883,7 @@ end;
Procedure THttpHeader.SetFieldValue(Index : Integer; Value : String);
begin
if (Index>1) and (Index<=NoHTTPFields) then
if (Index>=1) and (Index<=NoHTTPFields) then
begin
FFields[Index]:=Value;
If (Index=11) then