Changeset 3636
- Timestamp:
- 03/08/2006 05:51:42 AM (19 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-cron.php
r3634 r3636 3 3 define('DOING_CRON', TRUE); 4 4 require_once('wp-config.php'); 5 6 if ( $_GET['check'] != md5(DB_PASS . '187425') ) 7 exit; 5 8 6 9 $crons = get_option('cron'); … … 13 16 $schedule = $args['schedule']; 14 17 if($schedule != false) { 15 fwrite($fp, var_export($schedules[$schedule]));16 18 $args = array_merge( array($timestamp, $schedule, $hook), $args['args']); 17 19 call_user_func_array('wp_reschedule_event', $args); -
trunk/wp-includes/cron.php
r3635 r3636 50 50 51 51 function wp_clear_scheduled_hook($hook) { 52 while($timestamp = next_scheduled($hook))52 while($timestamp = wp_next_scheduled($hook)) 53 53 wp_unschedule_event($timestamp, $hook); 54 54 } … … 73 73 $argyle = @ fsockopen($parts['host'], $_SERVER['SERVER_PORT'], $errno, $errstr, 0.01); 74 74 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 ); 77 79 } 78 80
Note: See TracChangeset
for help on using the changeset viewer.