mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-08-11 12:20:22 +00:00
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:
+3
-1
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user