Changeset 25222 for trunk/src/wp-includes/class-http.php
- Timestamp:
- 09/03/2013 08:38:56 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-http.php
r25221 r25222 215 215 */ 216 216 public function _get_first_available_transport( $args, $url = null ) { 217 $request_order = a rray( 'curl', 'streams', 'fsockopen');217 $request_order = apply_filters( 'http_api_transports', array( 'curl', 'streams', 'fsockopen' ), $args, $url ); 218 218 219 219 // Loop over each transport on each HTTP request looking for one which will serve this request's needs
Note: See TracChangeset
for help on using the changeset viewer.