From: Philipp Holzer Date: Tue, 13 Aug 2019 17:05:32 +0000 (+0200) Subject: fix isBackend() X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=6546bf5ad645bebb88e16edea44802b7a217e426;p=friendica.git fix isBackend() --- 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());