mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-10 12:50:18 +01:00
Use wp_guess_url() for determining the cron URL. Props jacobsantos. see #4779
git-svn-id: http://svn.automattic.com/wordpress/trunk@8529 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
f152ed51e1
commit
ccbc13a123
@ -88,7 +88,7 @@ function spawn_cron() {
|
||||
if ( array_shift( $keys ) > time() )
|
||||
return;
|
||||
|
||||
$cron_url = get_option( 'siteurl' ) . '/wp-cron.php?check=' . wp_hash('187425');
|
||||
$cron_url = wp_guess_url() . 'wp-cron.php?check=' . wp_hash('187425');
|
||||
|
||||
wp_remote_post($cron_url, array('timeout' => 0.01, 'blocking' => false));
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user