fix isBackend()

This commit is contained in:
Philipp Holzer 2019-08-13 19:05:32 +02:00
parent b1ae58cdc5
commit 6546bf5ad6
No known key found for this signature in database
GPG Key ID: D8365C3D36B77D90
1 changed files with 1 additions and 1 deletions

View File

@ -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());