From: Hartmut Holzgraefe Date: Mon, 21 Oct 2002 18:44:50 +0000 (+0000) Subject: removed bogus paranoid header checking X-Git-Tag: php-4.3.0pre2~226 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8841dfc9955d81f854fd0bbc61c01c060ad165bf;p=php removed bogus paranoid header checking --- diff --git a/main/SAPI.c b/main/SAPI.c index 85132e86ae..b1c5a09dcb 100644 --- a/main/SAPI.c +++ b/main/SAPI.c @@ -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 {