Changeset 38727 for trunk/src/wp-includes/class-http.php
- Timestamp:
- 10/05/2016 03:23:54 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-http.php
r38470 r38727 329 329 if ( ! $r['sslverify'] ) { 330 330 $options['verify'] = false; 331 $options['verifyname'] = false; 331 332 } else { 332 333 $options['verify'] = $r['sslcertificates']; … … 358 359 } 359 360 } 360 361 // Work around a bug in Requests when the path starts with // See https://github.com/rmccue/Requests/issues/231362 $url = preg_replace( '!^(\w+://[^/]+)//(.*)$!i', '$1/$2', $url );363 361 364 362 try {
Note: See TracChangeset
for help on using the changeset viewer.