From 3eb4332f333a1db00bdbd90aa03396be5d667783 Mon Sep 17 00:00:00 2001 From: Philipp Holzer Date: Wed, 10 Oct 2018 01:16:51 +0200 Subject: [PATCH] Bugfixing Backend --- src/App.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App.php b/src/App.php index 293d9d3a5..e947c13ff 100644 --- a/src/App.php +++ b/src/App.php @@ -1065,7 +1065,7 @@ class App ]; // Check if current module is in backend or backend flag is set - $this->isBackend = (in_array($this->module, $backends) || $this->isBackend); + $this->isBackend = (in_array($this->module, $backends) || $backend || $this->isBackend); } /**