Changeset 496064
- Timestamp:
- 01/27/2012 10:52:17 AM (14 years ago)
- Location:
- whisperfollow/trunk
- Files:
-
- 2 edited
-
WhisperFollow.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
whisperfollow/trunk/WhisperFollow.php
r496002 r496064 31 31 32 32 function whisperfollow_cron_definer($schedules){ 33 33 34 $schedules['fivemins'] = array( 34 35 'interval'=> 300, 35 36 'display'=> __('Once Every 5 Minutes') 36 37 ); 38 37 39 return $schedules; 38 40 } … … 128 130 129 131 if ( !wp_next_scheduled( 'whisperfollow_generate_hook' ) ) { 130 // Schedule to run hourly 131 wp_schedule_event( time()+300, 'hourly', 'whisperfollow_generate_hook' ); 132 wp_schedule_event( time(), 'fivemins', 'whisperfollow_generate_hook' ); 132 133 } 133 134 $isthereacat = false; -
whisperfollow/trunk/readme.txt
r496004 r496064 43 43 == Changelog == 44 44 45 = 1.0.2 = 46 * Bugfix to create the proper scheduler time! Now checks for updates in five minute intervals! 47 45 48 = 1.0.1 = 46 49 * Bugfix to actually register the update hook with scheduler. … … 51 54 == Upgrade Notice == 52 55 56 = 1.0.2 = 57 * Bugfix to create the proper scheduler time! Now checks for updates in five minute intervals! 58 53 59 = 1.0.1 = 54 60 Now the scheduler works!(hourly) Soon it will work more regularly!
Note: See TracChangeset
for help on using the changeset viewer.