Changeset 3636

Show
Ignore:
Timestamp:
03/08/06 05:51:42 (2 years ago)
Author:
ryan
Message:

Cron fixes from mdawaffe. #2425

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/wp-cron.php

    r3634 r3636  
    33define('DOING_CRON', TRUE); 
    44require_once('wp-config.php'); 
     5 
     6if ( $_GET['check'] != md5(DB_PASS . '187425') ) 
     7    exit; 
    58 
    69$crons = get_option('cron'); 
     
    1316        $schedule = $args['schedule']; 
    1417        if($schedule != false) { 
    15             fwrite($fp, var_export($schedules[$schedule])); 
    1618            $args = array_merge( array($timestamp, $schedule, $hook), $args['args']); 
    1719            call_user_func_array('wp_reschedule_event', $args); 
  • trunk/wp-includes/cron.php

    r3635 r3636  
    5050 
    5151function wp_clear_scheduled_hook($hook) { 
    52     while($timestamp = next_scheduled($hook)) 
     52    while($timestamp = wp_next_scheduled($hook)) 
    5353        wp_unschedule_event($timestamp, $hook); 
    5454} 
     
    7373    $argyle = @ fsockopen($parts['host'], $_SERVER['SERVER_PORT'], $errno, $errstr, 0.01); 
    7474    if ( $argyle ) 
    75         fputs($argyle, "GET {$parts['path']}?time=" . time() . '&check=' 
    76         . md5(DB_PASS . '187425') . " HTTP/1.0\r\nHost: {$_SERVER['HTTP_HOST']}\r\n\r\n"); 
     75        fputs($argyle, 
     76              "GET {$parts['path']}?check=" . md5(DB_PASS . '187425') . " HTTP/1.0\r\n" 
     77            . "Host: {$_SERVER['HTTP_HOST']}\r\n\r\n" 
     78        ); 
    7779} 
    7880