Code Modernisation: Replace call_user_func_array()
in wp-cron.php
with a direct function call.
Props jrf. See #47678. git-svn-id: https://develop.svn.wordpress.org/trunk@46142 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
0432a9f6b5
commit
927098e5aa
@ -118,8 +118,7 @@ foreach ( $crons as $timestamp => $cronhooks ) {
|
||||
$schedule = $v['schedule'];
|
||||
|
||||
if ( $schedule ) {
|
||||
$new_args = array( $timestamp, $schedule, $hook, $v['args'] );
|
||||
call_user_func_array( 'wp_reschedule_event', $new_args );
|
||||
wp_reschedule_event( $timestamp, $schedule, $hook, $v['args'] );
|
||||
}
|
||||
|
||||
wp_unschedule_event( $timestamp, $hook, $v['args'] );
|
||||
|
Loading…
Reference in New Issue
Block a user