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

diff --git a/NEWS b/NEWS
index cef0f3d2672c160adb2a6f8f5cdc852d6f737bbf..2bbe062387864dd8cc4b1f815df14a2e32e418bd 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,6 +1,7 @@
 PHP 4                                                                      NEWS
 |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
 ?? ??? 2004, Version 4.3.9
+- Fixed bug with raw_post_data not getting set (Brian)
 - Fixed a file-descriptor leak with phpinfo() and other 'special' URLs (Zeev)
 - Fixed bug #29727 (Added missing CURL authentication directives). (Ilia)
 - Fixed bug #29719 (fgetcsv() has problem parsing strings ending with escaped
index ecbdc3e377d20929a390588879cd98e117f219f6..b80435e16060107cd96867a4c421688bb2572d60 100644 (file)
@@ -331,6 +331,7 @@ SAPI_API void sapi_activate(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, if
         * necessary.