From 579f8d956542887f3e87eecc62b1d88f5aadccff Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Sun, 4 Feb 2018 20:55:28 +0100 Subject: [PATCH] Timing bug fix --- Module/ModuleManager.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Module/ModuleManager.php b/Module/ModuleManager.php index 4e3b7da16..3cca21cda 100644 --- a/Module/ModuleManager.php +++ b/Module/ModuleManager.php @@ -482,7 +482,7 @@ class ModuleManager } /* Install receiving */ - foreach ($installed as $key => $value) { + foreach ($this->installed as $key => $value) { $this->installProviding($key, $module); }