Navigation Menu

Skip to content

Commit

Permalink
Revert incorrect fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Ilia Alshanetsky committed Mar 24, 2012
1 parent cb54532 commit 8d0760f
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion NEWS
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion ext/soap/php_http.c
Expand Up @@ -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) {
Expand Down

0 comments on commit 8d0760f

Please sign in to comment.