From: Roland Haeder Date: Mon, 29 Jun 2015 18:15:57 +0000 (+0200) Subject: Grrr .... :-( X-Git-Url: https://git.mxchange.org/?p=core.git;a=commitdiff_plain;h=f99d59c66616a4a42b3716987f0cb40f181cd952 Grrr .... :-( Signed-off-by: Roland Häder --- diff --git a/inc/classes/main/tasks/idle/class_IdleLoopTask.php b/inc/classes/main/tasks/idle/class_IdleLoopTask.php index e72c1940..20d394be 100644 --- a/inc/classes/main/tasks/idle/class_IdleLoopTask.php +++ b/inc/classes/main/tasks/idle/class_IdleLoopTask.php @@ -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); } /**