php-src/tests/basic/bug53180.phpt
Gustavo André dos Santos Lopes ee80871a15 - Fixed bug #53180 (post_max_size=0 not disabling the limit when the content
type is application/x-www-form-urlencoded or is not registered with PHP).
2010-10-27 14:56:51 +00:00

20 lines
309 B
PHP

--TEST--
Bug #53180 (post_max_size=0 partly not working)
--INI--
post_max_size=0
--POST--
email=foo&password=bar&submit=Log+on
--FILE--
<?php
var_dump($_POST);
?>
--EXPECT--
array(3) {
["email"]=>
string(3) "foo"
["password"]=>
string(3) "bar"
["submit"]=>
string(6) "Log on"
}