removed bogus paranoid header checking

This commit is contained in:
Hartmut Holzgraefe 2002-10-21 18:44:50 +00:00
parent 8b7e9d7774
commit 8841dfc995

View File

@ -321,12 +321,8 @@ SAPI_API void sapi_activate(TSRMLS_D)
it is up to the webserver to decide whether to allow a method or not
*/
SG(request_info).content_type_dup = NULL;
if(PG(always_populate_raw_post_data)) {
if(sapi_module.default_post_reader) {
sapi_module.default_post_reader(TSRMLS_C);
}
} else {
sapi_module.sapi_error(E_WARNING, "No content-type in %s request", SG(request_info).request_method);
if(sapi_module.default_post_reader) {
sapi_module.default_post_reader(TSRMLS_C);
}
}
} else {