From 6546bf5ad645bebb88e16edea44802b7a217e426 Mon Sep 17 00:00:00 2001 From: Philipp Holzer Date: Tue, 13 Aug 2019 19:05:32 +0200 Subject: [PATCH] fix isBackend() --- src/App.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App.php b/src/App.php index 41d65d1b9d..4972154731 100644 --- a/src/App.php +++ b/src/App.php @@ -946,7 +946,7 @@ class App } // Exclude the backend processes from the session management - if (!$module->isBackend()) { + if (!$this->isBackend()) { $stamp1 = microtime(true); session_start(); $this->profiler->saveTimestamp($stamp1, 'parser', Core\System::callstack());