Opened 9 years ago
Closed 9 years ago
#33462 closed defect (bug) (duplicate)
wrong order of the arguments \public\wp-includes\taxonomy.php:4448
Reported by: | mich.grodno | Owned by: | |
---|---|---|---|
Milestone: | Priority: | normal | |
Severity: | normal | Version: | 4.3 |
Component: | General | Keywords: | |
Focuses: | Cc: |
Description
wrong order of the arguments
public/wp-includes/taxonomy.php:4448
wp_schedule_single_event( 'wp_batch_split_terms', time() + MINUTE_IN_SECONDS );
public/wp-includes/cron.php:23
function wp_schedule_single_event( $timestamp, $hook, $args = array()) {
...
}
must be:
wp_schedule_single_event(time() + MINUTE_IN_SECONDS, 'wp_batch_split_terms');
Change History (1)
Note: See
TracTickets for help on using
tickets.
Already reported in #33423 and fixed in [33646]