Cron fixes from mdawaffe. #2425

git-svn-id: https://develop.svn.wordpress.org/trunk@3636 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren
2006-03-08 05:51:42 +00:00
parent 91fbcd183e
commit 5fd8e9c8f5
2 changed files with 9 additions and 5 deletions
+3 -1
View File
@@ -3,6 +3,9 @@ ignore_user_abort(true);
define('DOING_CRON', TRUE);
require_once('wp-config.php');
if ( $_GET['check'] != md5(DB_PASS . '187425') )
exit;
$crons = get_option('cron');
if (!is_array($crons) || array_shift(array_keys($crons)) > time())
return;
@@ -12,7 +15,6 @@ foreach ($crons as $timestamp => $cronhooks) {
do_action($hook, $args['args']);
$schedule = $args['schedule'];
if($schedule != false) {
fwrite($fp, var_export($schedules[$schedule]));
$args = array_merge( array($timestamp, $schedule, $hook), $args['args']);
call_user_func_array('wp_reschedule_event', $args);
}