Changeset 4289 for trunk/wp-includes/cron.php
- Timestamp:
- 10/04/2006 03:49:56 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/cron.php
r4254 r4289 6 6 $key = md5(serialize($args)); 7 7 $crons[$timestamp][$hook][$key] = array( 'schedule' => false, 'args' => $args ); 8 ksort( $crons);8 uksort( $crons, "strnatcasecmp" ); 9 9 _set_cron_array( $crons ); 10 10 } … … 18 18 return false; 19 19 $crons[$timestamp][$hook][$key] = array( 'schedule' => $recurrence, 'args' => $args, 'interval' => $schedules[$recurrence]['interval'] ); 20 ksort( $crons);20 uksort( $crons, "strnatcasecmp" ); 21 21 _set_cron_array( $crons ); 22 22 }
Note: See TracChangeset
for help on using the changeset viewer.