From dadcb3b97e98a40f2f9994352e07ac62121b3c19 Mon Sep 17 00:00:00 2001 From: Jack Wilkinson <31214002+jaxwilko@users.noreply.github.com> Date: Tue, 21 Jun 2022 17:17:17 +0100 Subject: [PATCH] [FIX] Fix plugin flags not loading from cache correctly Fix issue where flags would not be set correctly from cache --- modules/system/classes/PluginManager.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/system/classes/PluginManager.php b/modules/system/classes/PluginManager.php index 04fed249d8..c4af1cff68 100644 --- a/modules/system/classes/PluginManager.php +++ b/modules/system/classes/PluginManager.php @@ -226,7 +226,7 @@ public function loadPluginFlags(): void ]; }); - list($this->pluginFlag, $this->replacementMap, $this->activeReplacementMap) = $data; + list($this->pluginFlags, $this->replacementMap, $this->activeReplacementMap) = $data; } /**