Plugin Directory

Changeset 2042136


Ignore:
Timestamp:
03/01/2019 12:48:17 PM (7 years ago)
Author:
storespot
Message:

hot fix

Location:
storespot
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • storespot/tags/1.1.0/admin/class-storespot-async.php

    r2042059 r2042136  
    2020        );
    2121
    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        ) );
    2329    }
    2430
  • storespot/trunk/admin/class-storespot-async.php

    r2042059 r2042136  
    2020        );
    2121
    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        ) );
    2329    }
    2430
Note: See TracChangeset for help on using the changeset viewer.