Add comment

This commit is contained in:
Alex Cabal 2025-03-07 09:55:54 -06:00
parent a91509726c
commit e76be32463

View file

@ -30,6 +30,7 @@ class HttpInput{
&&
preg_match('/^application\/x-www-form-urlencoded(;|$)/', $contentType)
){
// TODO: On PHP >= 8.4, use the new `request_parse_body()` function instead.
parse_str(file_get_contents('php://input'), $_POST);
}
}