Changeset 29479 for trunk/src/wp-includes/class-http.php
- Timestamp:
- 08/13/2014 03:55:10 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-http.php
r29230 r29479 728 728 * 729 729 * @param string $url The URL which was requested. 730 * @param array $args The Argu ements which were used to make the request.730 * @param array $args The Arguments which were used to make the request. 731 731 * @param array $response The Response of the HTTP request. 732 732 * @return false|object False if no redirect is present, a WP_HTTP or WP_Error result otherwise. … … 1431 1431 $curl_error = curl_errno( $handle ); 1432 1432 1433 // If an error occur ed, or, no response.1433 // If an error occurred, or, no response. 1434 1434 if ( $curl_error || ( 0 == strlen( $theBody ) && empty( $theHeaders['headers'] ) ) ) { 1435 1435 if ( CURLE_WRITE_ERROR /* 23 */ == $curl_error && $r['stream'] ) {
Note: See TracChangeset
for help on using the changeset viewer.