]> granicus.if.org Git - php/commitdiff
Let's suppress this warning if always_populate is enabled
authorRasmus Lerdorf <rasmus@php.net>
Wed, 24 Oct 2001 20:10:30 +0000 (20:10 +0000)
committerRasmus Lerdorf <rasmus@php.net>
Wed, 24 Oct 2001 20:10:30 +0000 (20:10 +0000)
main/SAPI.c

index 642a609ee399a67af79e47c75fa92b4338f1f68c..b895d756dc41a636301bade515bdd777321f5d10 100644 (file)
@@ -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);