Plugin Directory

Changeset 496064


Ignore:
Timestamp:
01/27/2012 10:52:17 AM (14 years ago)
Author:
acegiak
Message:
 
Location:
whisperfollow/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • whisperfollow/trunk/WhisperFollow.php

    r496002 r496064  
    3131
    3232function whisperfollow_cron_definer($schedules){
     33
    3334    $schedules['fivemins'] = array(
    3435        'interval'=> 300,
    3536        'display'=>  __('Once Every 5 Minutes')
    3637    );
     38
    3739    return $schedules;
    3840}
     
    128130
    129131    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' );
    132133    }
    133134    $isthereacat = false;
  • whisperfollow/trunk/readme.txt

    r496004 r496064  
    4343== Changelog ==
    4444
     45= 1.0.2 =
     46* Bugfix to create the proper scheduler time! Now checks for updates in five minute intervals!
     47
    4548= 1.0.1 =
    4649* Bugfix to actually register the update hook with scheduler.
     
    5154== Upgrade Notice ==
    5255
     56= 1.0.2 =
     57* Bugfix to create the proper scheduler time! Now checks for updates in five minute intervals!
     58
    5359= 1.0.1 =
    5460Now the scheduler works!(hourly) Soon it will work more regularly!
Note: See TracChangeset for help on using the changeset viewer.