Changeset 19722 for trunk/wp-cron.php
- Timestamp:
- 01/09/2012 07:02:31 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-cron.php
r18659 r19722 49 49 50 50 $keys = array_keys( $crons ); 51 $local_time = time();51 $local_time = microtime( true ); 52 52 53 53 if ( isset($keys[0]) && $keys[0] > $local_time ) … … 62 62 if ( $doing_cron_transient && ( $doing_cron_transient + WP_CRON_LOCK_TIMEOUT > $local_time ) ) 63 63 return; 64 $doing_cron_transient = $doing_wp_cron = time();64 $doing_cron_transient = $doing_wp_cron = sprintf( '%.22F', microtime( true ) ); 65 65 set_transient( 'doing_cron', $doing_wp_cron ); 66 66 } else {
Note: See TracChangeset
for help on using the changeset viewer.