Make WordPress Core

Opened 11 years ago

Closed 11 years ago

#33462 closed defect (bug) (duplicate)

wrong order of the arguments \public\wp-includes\taxonomy.php:4448

Reported by: mich.grodno Owned by:
Priority: normal Milestone:
Component: General Version: 4.3
Severity: normal Keywords:
Cc: Focuses:

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)

#1 @swissspidy
11 years ago

  • Milestone Awaiting Review
  • Resolutionduplicate
  • Status newclosed

Already reported in #33423 and fixed in [33646]

Note: See TracTickets for help on using tickets.