Grrr .... :-(
[core.git] / inc / classes / main / tasks / idle / class_IdleLoopTask.php
index e72c1940442e91aefe5e4652fa5d281e6665f8fe..20d394be53c76a3f0b4a9caf1314be9f21daa1cf 100644 (file)
@@ -37,7 +37,7 @@ class IdleLoopTask extends BaseTask implements Taskable, Visitable {
                parent::__construct(__CLASS__);
 
                // Init idle loop time from config ("cache" it here)
-               $this->idleLoopTime = $this->getConfigInstance()->getConfigEntry('idle_loop_time');
+               $this->idleTime = $this->getConfigInstance()->getConfigEntry('idle_loop_time');
        }
 
        /**
@@ -71,7 +71,7 @@ class IdleLoopTask extends BaseTask implements Taskable, Visitable {
         */
        public function executeTask () {
                // Idle here a little
-               $this->idle($this->idleLoopTime);
+               $this->idle($this->idleTime);
        }
 
        /**