mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-12 22:14:25 +02:00
* fix for #22664 from Benito Zander. pos() instead of comparetext was used.
git-svn-id: trunk@22143 -
This commit is contained in:
parent
7201bd8526
commit
811b65da87
@ -686,7 +686,7 @@ begin
|
|||||||
Finally
|
Finally
|
||||||
I.Free;
|
I.Free;
|
||||||
end;
|
end;
|
||||||
if Pos(ContentType,'MULTIPART/FORM-DATA')=0 then
|
if CompareText(ContentType,'MULTIPART/FORM-DATA')=0 then
|
||||||
ProcessMultiPart(M,ContentType)
|
ProcessMultiPart(M,ContentType)
|
||||||
else if CompareText(ContentType,'APPLICATION/X-WWW-FORM-URLENCODED')=0 then
|
else if CompareText(ContentType,'APPLICATION/X-WWW-FORM-URLENCODED')=0 then
|
||||||
ProcessUrlEncoded(M)
|
ProcessUrlEncoded(M)
|
||||||
|
Loading…
Reference in New Issue
Block a user