Changeset 47219 for trunk/src/wp-includes/class-wp-http-ixr-client.php
- Timestamp:
- 02/09/2020 04:52:28 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-http-ixr-client.php
r47122 r47219 77 77 $args['headers'] = apply_filters( 'wp_http_ixr_client_headers', $args['headers'] ); 78 78 79 if ( $this->timeout !== false) {79 if ( false !== $this->timeout ) { 80 80 $args['timeout'] = $this->timeout; 81 81 } … … 113 113 114 114 // Is the message a fault? 115 if ( $this->message->messageType == 'fault') {115 if ( 'fault' === $this->message->messageType ) { 116 116 $this->error = new IXR_Error( $this->message->faultCode, $this->message->faultString ); 117 117 return false;
Note: See TracChangeset
for help on using the changeset viewer.