mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
Merge branch 'PHP-8.1' into PHP-8.2
* PHP-8.1: Fix GH-11433: Unable to set CURLOPT_ACCEPT_ENCODING to NULL Fix "invalid state error" with cloned namespace declarations Fix lifetime issue with getAttributeNodeNS()
This commit is contained in:
commit
c160693515
7 changed files with 185 additions and 30 deletions
|
@ -1835,7 +1835,6 @@ static zend_result _php_curl_setopt(php_curl *ch, zend_long option, zval *zvalue
|
|||
case CURLOPT_TLSAUTH_TYPE:
|
||||
case CURLOPT_TLSAUTH_PASSWORD:
|
||||
case CURLOPT_TLSAUTH_USERNAME:
|
||||
case CURLOPT_ACCEPT_ENCODING:
|
||||
case CURLOPT_TRANSFER_ENCODING:
|
||||
case CURLOPT_DNS_SERVERS:
|
||||
case CURLOPT_MAIL_AUTH:
|
||||
|
@ -1910,6 +1909,7 @@ static zend_result _php_curl_setopt(php_curl *ch, zend_long option, zval *zvalue
|
|||
case CURLOPT_RANGE:
|
||||
case CURLOPT_FTP_ACCOUNT:
|
||||
case CURLOPT_RTSP_SESSION_ID:
|
||||
case CURLOPT_ACCEPT_ENCODING:
|
||||
#if LIBCURL_VERSION_NUM >= 0x072100 /* Available since 7.33.0 */
|
||||
case CURLOPT_DNS_INTERFACE:
|
||||
case CURLOPT_DNS_LOCAL_IP4:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue