From: Michael Wallner Date: Tue, 6 May 2014 09:59:41 +0000 (+0200) Subject: fix bug #67198 (php://input regression) X-Git-Tag: php-5.6.0beta3~2^2~30 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7308d47c4b36403c4d5a37798446b1837090a683;p=php fix bug #67198 (php://input regression) --- diff --git a/main/SAPI.c b/main/SAPI.c index 7858779a62..975dd618bd 100644 --- a/main/SAPI.c +++ b/main/SAPI.c @@ -462,7 +462,7 @@ SAPI_API void sapi_activate(TSRMLS_D) SG(request_info).post_entry = NULL; SG(request_info).proto_num = 1000; /* Default to HTTP 1.0 */ SG(global_request_time) = 0; - + SG(post_read) = 0; /* It's possible to override this general case in the activate() callback, if necessary. */ if (SG(request_info).request_method && !strcmp(SG(request_info).request_method, "HEAD")) { SG(request_info).headers_only = 1;