]> granicus.if.org Git - php/commitdiff
If you send a post with a content-type header and then the next post without the...
authorBrian France <bfrance@php.net>
Thu, 19 Aug 2004 20:26:39 +0000 (20:26 +0000)
committerBrian France <bfrance@php.net>
Thu, 19 Aug 2004 20:26:39 +0000 (20:26 +0000)
NEWS
main/SAPI.c

diff --git a/NEWS b/NEWS
index b4672df5ce0b4e1990d742f23f8f0dd47f1cb74d..50448e5e89e0a9f845c0c0c3018f6517f4e98f10 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -25,6 +25,7 @@ PHP                                                                        NEWS
 - Added bz2 stream filter support. (Sara)
 - Added support of parameter->value arrays to xsl_xsltprocessor_set_parameter() 
   (Tony)
+- Fixed bug with raw_post_data not getting set (Brian)
 - Fixed bug in mysql->client_version (Georg)
 - Fixed ZTS destruction. (Marcus)
 - Fixed bug #29737 (ip2long should return -1 if IP is 255.255.255.255 and FALSE on error). (Tony)
index eff50f63a1cdfa3c345d461b554ad7f65127db26..34e104cea6f92000971c135c665dcefd102b4c9a 100644 (file)
@@ -296,6 +296,7 @@ SAPI_API void sapi_activate_headers_only(TSRMLS_D)
        SG(request_info).current_user = NULL;
        SG(request_info).current_user_length = 0;
        SG(request_info).no_headers = 0;
+       SG(request_info).post_entry = NULL;
 
        /*
         * It's possible to override this general case in the activate() callback,