Changeset 28781 for trunk/src/wp-includes/cron.php
- Timestamp:
- 06/19/2014 10:52:35 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/cron.php
r26782 r28781 279 279 * @type int $timeout The request timeout in seconds. Default .01 seconds. 280 280 * @type bool $blocking Whether to set blocking for the request. Default false. 281 * @type bool $sslverify Whether to sslverify. Default true.281 * @type bool $sslverify Whether SSL should be verified for the request. Default false. 282 282 * } 283 283 * } … … 290 290 'blocking' => false, 291 291 /** This filter is documented in wp-includes/class-http.php */ 292 'sslverify' => apply_filters( 'https_local_ssl_verify', true )292 'sslverify' => apply_filters( 'https_local_ssl_verify', false ) 293 293 ) 294 294 ) );
Note: See TracChangeset
for help on using the changeset viewer.