Changeset 3929
- Timestamp:
- 06/27/2006 06:04:27 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/cron.php
r3860 r3929 66 66 67 67 function spawn_cron() { 68 $keys = array_keys( get_option( 'cron' ) ); 68 $crons = get_option( 'cron' ) 69 70 if( !is_array($crons) ) 71 return; 72 73 $keys = array_keys( $crons ); 69 74 if ( array_shift( $keys ) > time() ) 70 75 return;
Note: See TracChangeset
for help on using the changeset viewer.