Grrr .... :-(
authorRoland Haeder <roland@mxchange.org>
Mon, 29 Jun 2015 18:15:57 +0000 (20:15 +0200)
committerRoland Haeder <roland@mxchange.org>
Mon, 29 Jun 2015 18:15:57 +0000 (20:15 +0200)
Signed-off-by: Roland Häder <roland@mxchange.org>
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);
        }
 
        /**