Changeset 31290 for trunk/src/wp-includes/class-http.php
- Timestamp:
- 01/29/2015 03:57:42 AM (11 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/class-http.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-http.php
r31126 r31290 1521 1521 // If an error occurred, or, no response. 1522 1522 if ( $curl_error || ( 0 == strlen( $theBody ) && empty( $theHeaders['headers'] ) ) ) { 1523 if ( CURLE_WRITE_ERROR /* 23 */ == $curl_error && $r['stream']) {1523 if ( CURLE_WRITE_ERROR /* 23 */ == $curl_error ) { 1524 1524 if ( ! $this->max_body_length || $this->max_body_length != $bytes_written_total ) { 1525 fclose( $this->stream_handle ); 1526 return new WP_Error( 'http_request_failed', __( 'Failed to write request to temporary file.' ) ); 1525 if ( $r['stream'] ) { 1526 curl_close( $handle ); 1527 fclose( $this->stream_handle ); 1528 return new WP_Error( 'http_request_failed', __( 'Failed to write request to temporary file.' ) ); 1529 } else { 1530 curl_close( $handle ); 1531 return new WP_Error( 'http_request_failed', curl_error( $handle ) ); 1532 } 1527 1533 } 1528 1534 } else {
Note: See TracChangeset
for help on using the changeset viewer.