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:
Sergey Biryukov 2019-09-15 11:47:38 +00:00
parent 0432a9f6b5
commit 927098e5aa

View File

@ -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'] );