2006-03-07 22:43:59 +01:00
|
|
|
<?php
|
|
|
|
ignore_user_abort(true);
|
|
|
|
define('DOING_CRON', TRUE);
|
2007-08-03 02:45:06 +02:00
|
|
|
require_once('./wp-config.php');
|
2006-03-07 22:43:59 +01:00
|
|
|
|
2007-04-16 22:47:23 +02:00
|
|
|
if ( $_GET['check'] != wp_hash('187425') )
|
2006-03-08 06:51:42 +01:00
|
|
|
exit;
|
|
|
|
|
2006-11-21 03:48:12 +01:00
|
|
|
if ( get_option('doing_cron') > time() )
|
|
|
|
exit;
|
|
|
|
|
|
|
|
update_option('doing_cron', time() + 30);
|
|
|
|
|
2006-09-14 01:54:15 +02:00
|
|
|
$crons = _get_cron_array();
|
2006-08-07 05:50:55 +02:00
|
|
|
$keys = array_keys($crons);
|
|
|
|
if (!is_array($crons) || $keys[0] > time())
|
2006-03-07 22:43:59 +01:00
|
|
|
return;
|
|
|
|
foreach ($crons as $timestamp => $cronhooks) {
|
|
|
|
if ($timestamp > time()) break;
|
2006-09-14 01:54:15 +02:00
|
|
|
foreach ($cronhooks as $hook => $keys) {
|
|
|
|
foreach ($keys as $key => $args) {
|
|
|
|
$schedule = $args['schedule'];
|
|
|
|
if ($schedule != false) {
|
2006-10-08 19:50:21 +02:00
|
|
|
$new_args = array($timestamp, $schedule, $hook, $args['args']);
|
2006-09-14 02:18:05 +02:00
|
|
|
call_user_func_array('wp_reschedule_event', $new_args);
|
2006-09-14 01:54:15 +02:00
|
|
|
}
|
2006-09-14 02:18:05 +02:00
|
|
|
wp_unschedule_event($timestamp, $hook, $args['args']);
|
2006-11-21 03:48:12 +01:00
|
|
|
do_action_ref_array($hook, $args['args']);
|
2006-03-07 22:43:59 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2006-11-21 03:48:12 +01:00
|
|
|
|
|
|
|
update_option('doing_cron', 0);
|
|
|
|
|
2006-03-07 22:43:59 +01:00
|
|
|
?>
|