Make WordPress Core

Ticket #19700: 19700.diff

File 19700.diff, 1.4 KB (added by ryan, 13 years ago)

microtime( true )

  • wp-includes/cron.php

     
    194194 */
    195195function spawn_cron( $local_time = 0 ) {
    196196
    197         if ( !$local_time )
    198                 $local_time = time();
     197        if ( ! $local_time )
     198                $local_time = microtime( true );
    199199
    200200        if ( defined('DOING_CRON') || isset($_GET['doing_wp_cron']) )
    201201                return;
     
    264264        if ( false === $crons = _get_cron_array() )
    265265                return;
    266266
    267         $local_time = time();
     267        $local_time = microtime( true );
    268268        $keys = array_keys( $crons );
    269269        if ( isset($keys[0]) && $keys[0] > $local_time )
    270270                return;
  • wp-cron.php

     
    4848        die();
    4949
    5050$keys = array_keys( $crons );
    51 $local_time = time();
     51$local_time = microtime( true );
    5252
    5353if ( isset($keys[0]) && $keys[0] > $local_time )
    5454        die();
     
    6161                // Called from external script/job. Try setting a lock.
    6262                if ( $doing_cron_transient && ( $doing_cron_transient + WP_CRON_LOCK_TIMEOUT > $local_time ) )
    6363                        return;
    64                 $doing_cron_transient = $doing_wp_cron = time();
     64                $doing_cron_transient = $doing_wp_cron = microtime( true );
    6565                set_transient( 'doing_cron', $doing_wp_cron );
    6666        } else {
    6767                $doing_wp_cron = $_GET[ 'doing_wp_cron' ];