From 8841dfc9955d81f854fd0bbc61c01c060ad165bf Mon Sep 17 00:00:00 2001 From: Hartmut Holzgraefe Date: Mon, 21 Oct 2002 18:44:50 +0000 Subject: [PATCH] removed bogus paranoid header checking --- main/SAPI.c | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) 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 { -- 2.50.1