Assembla home | Assembla project page
 
Show
Ignore:
Timestamp:
08/01/08 18:11:54 (4 months ago)
Author:
Seldaek
Message:

fixes #45

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/Phergie/Plugin/Abstract/Cron.php

    r217 r275  
    88 * delayed. 
    99 */ 
    10 abstract class Phergie_Plugin_Abstract_Cron extends Phergie_Plugin_Abstract_Base 
     10abstract class Phergie_Plugin_Abstract_Cron extends Phergie_Plugin_Abstract_Command 
    1111{ 
    1212    /** 
     
    5454        if (time() > $this->nextCall) { 
    5555            $this->run(); 
    56             $this->nextCall = time() +$this->delay; 
     56            $this->nextCall = time() + $this->delay; 
    5757        } 
    5858    }