Make WordPress Core


Ignore:
Timestamp:
02/27/2007 03:24:54 PM (18 years ago)
Author:
markjaquith
Message:

trailing tabs and whitespace cleanup.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/cron.php

    r4834 r4953  
    5555function wp_clear_scheduled_hook( $hook ) {
    5656    $args = array_slice( func_get_args(), 1 );
    57    
     57
    5858    while ( $timestamp = wp_next_scheduled( $hook, $args ) )
    5959        wp_unschedule_event( $timestamp, $hook, $args );
     
    7474function spawn_cron() {
    7575    $crons = _get_cron_array();
    76    
     76
    7777    if ( !is_array($crons) )
    7878        return;
    79    
     79
    8080    $keys = array_keys( $crons );
    8181    if ( array_shift( $keys ) > time() )
     
    9999
    100100    $crons = _get_cron_array();
    101    
     101
    102102    if ( !is_array($crons) )
    103103        return;
Note: See TracChangeset for help on using the changeset viewer.