Changes in branches/2.9/wp-includes/http.php [12425:12473]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2.9/wp-includes/http.php
r12425 r12473 1297 1297 // CURLOPT_TIMEOUT and CURLOPT_CONNECTTIMEOUT expect integers. Have to use ceil since 1298 1298 // a value of 0 will allow an ulimited timeout. 1299 // Use _MS if available. 1300 if ( defined( 'CURLOPT_TIMEOUT_MS' ) ) { 1301 $timeout_ms = (int) ceil( 1000 * $r['timeout'] ); 1302 curl_setopt( $handle, CURLOPT_CONNECTTIMEOUT_MS, $timeout_ms ); 1303 curl_setopt( $handle, CURLOPT_TIMEOUT_MS, $timeout_ms ); 1304 } else { 1305 $timeout = (int) ceil( $r['timeout'] ); 1306 curl_setopt( $handle, CURLOPT_CONNECTTIMEOUT, $timeout ); 1307 curl_setopt( $handle, CURLOPT_TIMEOUT, $timeout ); 1308 } 1299 $timeout = (int) ceil( $r['timeout'] ); 1300 curl_setopt( $handle, CURLOPT_CONNECTTIMEOUT, $timeout ); 1301 curl_setopt( $handle, CURLOPT_TIMEOUT, $timeout ); 1309 1302 1310 1303 curl_setopt( $handle, CURLOPT_URL, $url);
Note: See TracChangeset
for help on using the changeset viewer.