From 98f0375e94fc39961e00976e71d15f991a7282cc Mon Sep 17 00:00:00 2001 From: Shish Date: Sun, 7 Jul 2019 15:57:06 +0100 Subject: [PATCH] make tracer not-null in installer --- core/_install.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/core/_install.php b/core/_install.php index 36dc7373..1b78499e 100644 --- a/core/_install.php +++ b/core/_install.php @@ -61,6 +61,8 @@ define("DATABASE_TIMEOUT", 10000); // Pull in necessary files require_once "vendor/autoload.php"; +$_tracer = new EventTracer(); + require_once "core/exceptions.php"; require_once "core/cacheengine.php"; require_once "core/dbengine.php";