]> granicus.if.org Git - php/commitdiff
Revert incorrect fix
authorIlia Alshanetsky <iliaa@php.net>
Sat, 24 Mar 2012 16:27:55 +0000 (12:27 -0400)
committerIlia Alshanetsky <iliaa@php.net>
Sat, 24 Mar 2012 16:27:55 +0000 (12:27 -0400)
NEWS
ext/soap/php_http.c

diff --git a/NEWS b/NEWS
index fa36358231cc9a4cb15bba0775c43a507784821b..d278883f8bb13f26c4246e2498f7ead9a91eac51 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -93,7 +93,6 @@ PHP                                                                        NEWS
 
 - SOAP
   . Fixed basic HTTP authentication for WSDL sub requests. (Dmitry)
-  . Fixed bug #61423 (gzip compression fails). (Ilia)
   . Fixed bug #60887 (SoapClient ignores user_agent option and sends no
     User-Agent header). (carloschilazo at gmail dot com)
   . Fixed bug #60842, #51775 (Chunked response parsing error when 
index 610c161836a743d2f8c61d275a41754b99070538..358877df6319ce96796cc900cff5bacd7d69b6cb 100644 (file)
@@ -336,7 +336,7 @@ int make_http_soap_request(zval  *this_ptr,
              n = 3;
                                ZVAL_STRING(&func, "gzencode", 0);
                                smart_str_append_const(&soap_headers_z,"Content-Encoding: gzip\r\n");
-                               ZVAL_LONG(params[2], 0x1f);
+                               ZVAL_LONG(params[2], 1);
            }
                        if (call_user_function(CG(function_table), (zval**)NULL, &func, &retval, n, params TSRMLS_CC) == SUCCESS &&
                            Z_TYPE(retval) == IS_STRING) {