From db75202426db42712ad58b3ca502442a35d2fbc3 Mon Sep 17 00:00:00 2001 From: Rasmus Lerdorf Date: Wed, 24 Oct 2001 20:10:30 +0000 Subject: [PATCH] Let's suppress this warning if always_populate is enabled --- main/SAPI.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/main/SAPI.c b/main/SAPI.c index 642a609ee3..b895d756dc 100644 --- a/main/SAPI.c +++ b/main/SAPI.c @@ -303,7 +303,6 @@ SAPI_API void sapi_activate(TSRMLS_D) if (SG(request_info).request_method && !strcmp(SG(request_info).request_method, "POST")) { if (!SG(request_info).content_type) { - sapi_module.sapi_error(E_WARNING, "No content-type in POST request"); SG(request_info).content_type_dup = NULL; if(PG(always_populate_raw_post_data)) { SG(request_info).post_entry = NULL; @@ -316,6 +315,8 @@ SAPI_API void sapi_activate(TSRMLS_D) sapi_module.default_post_reader(TSRMLS_C); } } + } else { + sapi_module.sapi_error(E_WARNING, "No content-type in POST request"); } } else { sapi_read_post_data(TSRMLS_C); -- 2.50.1