From 303f4ab4743906c6d322fd8faf65a1876375b05d Mon Sep 17 00:00:00 2001 From: Marc Hagen Date: Wed, 23 Nov 2022 12:59:16 +0100 Subject: [PATCH] Load LookingGlass first --- bootstrap.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bootstrap.php b/bootstrap.php index ba2ee77..c87674b 100644 --- a/bootstrap.php +++ b/bootstrap.php @@ -16,8 +16,8 @@ if (!file_exists(__DIR__ . '/config.php')) { die('config.php is not found, but is required for application to work!'); } -require __DIR__ . '/config.php'; require __DIR__ . '/LookingGlass.php'; +require __DIR__ . '/config.php'; LookingGlass::validateConfig(); LookingGlass::startSession();