Changeset 16603 for trunk/wp-includes/cron.php
- Timestamp:
- 11/29/2010 05:16:24 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/cron.php
r15837 r16603 197 197 198 198 if ( defined('DOING_CRON') || isset($_GET['doing_wp_cron']) ) 199 return;200 201 /*202 * do not even start the cron if local server timer has drifted203 * such as due to power failure, or misconfiguration204 */205 $timer_accurate = check_server_timer( $local_time );206 if ( !$timer_accurate )207 199 return; 208 200 … … 412 404 return $new_cron; 413 405 } 414 415 // stub for checking server timer accuracy, using outside standard time sources416 function check_server_timer( $local_time ) {417 return true;418 }
Note: See TracChangeset
for help on using the changeset viewer.