Use wp_guess_url() for determining the cron URL. Props jacobsantos. see #4779

git-svn-id: https://develop.svn.wordpress.org/trunk@8529 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren 2008-08-03 21:07:21 +00:00
parent 53de042ebd
commit 0f4aac8854

View File

@ -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));
}