From f99d59c66616a4a42b3716987f0cb40f181cd952 Mon Sep 17 00:00:00 2001 From: Roland Haeder Date: Mon, 29 Jun 2015 20:15:57 +0200 Subject: [PATCH] Grrr .... :-( MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Roland Häder --- inc/classes/main/tasks/idle/class_IdleLoopTask.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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); } /** -- 2.39.5