Changeset 2042136
- Timestamp:
- 03/01/2019 12:48:17 PM (7 years ago)
- Location:
- storespot
- Files:
-
- 2 edited
-
tags/1.1.0/admin/class-storespot-async.php (modified) (1 diff)
-
trunk/admin/class-storespot-async.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
storespot/tags/1.1.0/admin/class-storespot-async.php
r2042059 r2042136 20 20 ); 21 21 22 return wp_remote_get( esc_url_raw( $url ) ); 22 return wp_remote_get( esc_url_raw( $url ), array( 23 'timeout' => 0.01, 24 'blocking' => false, 25 'body' => null, 26 'cookies' => $_COOKIE, 27 'sslverify' => apply_filters( 'https_local_ssl_verify', false ), 28 ) ); 23 29 } 24 30 -
storespot/trunk/admin/class-storespot-async.php
r2042059 r2042136 20 20 ); 21 21 22 return wp_remote_get( esc_url_raw( $url ) ); 22 return wp_remote_get( esc_url_raw( $url ), array( 23 'timeout' => 0.01, 24 'blocking' => false, 25 'body' => null, 26 'cookies' => $_COOKIE, 27 'sslverify' => apply_filters( 'https_local_ssl_verify', false ), 28 ) ); 23 29 } 24 30
Note: See TracChangeset
for help on using the changeset viewer.