From fddd545e7207558b3353f88002484b32f4cf81b0 Mon Sep 17 00:00:00 2001 From: Dale Davies Date: Tue, 16 Apr 2024 21:04:27 +0100 Subject: [PATCH] Issue #113: Fix incorrectly parsed debug setting --- jumpapp/classes/Main.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jumpapp/classes/Main.php b/jumpapp/classes/Main.php index d0091e7..006a088 100644 --- a/jumpapp/classes/Main.php +++ b/jumpapp/classes/Main.php @@ -44,7 +44,7 @@ class Main { // Now we have config, enable detailed debugging info as early as possible // during initialisation - if (!$this->config->get('debug')) { + if (!$this->config->parse_bool($this->config->get('debug'))) { $debugmode = Debugger::Production; } // Tell Tracy to handle errors and exceptions.