From 9e9f0bf3d68816c8668b1c9bb71beccc2b0f90f3 Mon Sep 17 00:00:00 2001 From: Andrew Nacin Date: Mon, 29 Nov 2010 05:16:24 +0000 Subject: [PATCH] Kill check_server_timer(). fixes #15602. git-svn-id: https://develop.svn.wordpress.org/trunk@16603 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-includes/cron.php | 15 +-------------- 1 file changed, 1 insertion(+), 14 deletions(-) diff --git a/wp-includes/cron.php b/wp-includes/cron.php index c0a72d2985..7258cb0cef 100644 --- a/wp-includes/cron.php +++ b/wp-includes/cron.php @@ -198,14 +198,6 @@ function spawn_cron( $local_time = 0 ) { if ( defined('DOING_CRON') || isset($_GET['doing_wp_cron']) ) return; - /* - * do not even start the cron if local server timer has drifted - * such as due to power failure, or misconfiguration - */ - $timer_accurate = check_server_timer( $local_time ); - if ( !$timer_accurate ) - return; - /* * multiple processes on multiple web servers can run this code concurrently * try to make this as atomic as possible by setting doing_cron switch @@ -410,9 +402,4 @@ function _upgrade_cron_array($cron) { $new_cron['version'] = 2; update_option( 'cron', $new_cron ); return $new_cron; -} - -// stub for checking server timer accuracy, using outside standard time sources -function check_server_timer( $local_time ) { - return true; -} +} \ No newline at end of file