Changeset 36228
- Timestamp:
- 01/08/2016 11:53:10 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/cron.php
r36022 r36228 299 299 * 300 300 * @since 3.5.0 301 * @since 4.5.0 $doing_wp_cron was added to the filter arguments. 301 302 * 302 303 * @param array $cron_request_array { … … 313 314 * } 314 315 * } 316 * @param string $doing_wp_cron The unix timestamp of the cron lock. 315 317 */ 316 318 $cron_request = apply_filters( 'cron_request', array( … … 323 325 'sslverify' => apply_filters( 'https_local_ssl_verify', false ) 324 326 ) 325 ) );327 ), $doing_wp_cron ); 326 328 327 329 wp_remote_post( $cron_request['url'], $cron_request['args'] );
Note: See TracChangeset
for help on using the changeset viewer.