We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a2f83fa commit fb53862Copy full SHA for fb53862
src/bootstrap.php
@@ -1353,7 +1353,6 @@ function test_cron_spawn( $cache = true ) {
1353
return true;
1354
}
1355
1356
- $sslverify = version_compare( $wp_version, '4.0', '<' );
1357
$doing_wp_cron = sprintf( '%.22F', microtime( true ) );
1358
1359
$cron_request = apply_filters( 'cron_request', array(
@@ -1362,7 +1361,7 @@ function test_cron_spawn( $cache = true ) {
1362
1361
'args' => array(
1363
'timeout' => 3,
1364
'blocking' => true,
1365
- 'sslverify' => apply_filters( 'https_local_ssl_verify', $sslverify ),
+ 'sslverify' => apply_filters( 'https_local_ssl_verify', false ),
1366
),
1367
), $doing_wp_cron );
1368
0 commit comments