Ticket #31307: 31307.2.diff
File 31307.2.diff, 820 bytes (added by , 8 years ago) |
---|
-
src/wp-includes/cron.php
312 312 * @type bool $sslverify Whether SSL should be verified for the request. Default false. 313 313 * } 314 314 * } 315 * @param string $doing_wp_cron The unix timestamp of the cron lock. 315 316 */ 316 317 $cron_request = apply_filters( 'cron_request', array( 317 318 'url' => add_query_arg( 'doing_wp_cron', $doing_wp_cron, site_url( 'wp-cron.php' ) ), … … 322 323 /** This filter is documented in wp-includes/class-wp-http-streams.php */ 323 324 'sslverify' => apply_filters( 'https_local_ssl_verify', false ) 324 325 ) 325 ) );326 ), $doing_wp_cron ); 326 327 327 328 wp_remote_post( $cron_request['url'], $cron_request['args'] ); 328 329 }