- Timestamp:
- 11/08/2023 08:30:06 PM (11 months ago)
- Location:
- branches/6.4
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/6.4
-
branches/6.4/src/wp-includes/Requests/src/Transport/Curl.php
r56554 r57088 26 26 const CURL_7_10_5 = 0x070A05; 27 27 const CURL_7_16_2 = 0x071002; 28 const CURL_7_22_0 = 0x071600;29 28 30 29 /** … … 365 364 366 365 // Force closing the connection for old versions of cURL (<7.22). 367 if ( $this->version < self::CURL_7_22_0 &&!isset($headers['Connection'])) {366 if (!isset($headers['Connection'])) { 368 367 $headers['Connection'] = 'close'; 369 368 }
Note: See TracChangeset
for help on using the changeset viewer.