From 47738e65467435acd83f3a3c957208c7cfad7b9a Mon Sep 17 00:00:00 2001 From: Robert Date: Fri, 30 Dec 2022 03:31:33 -0500 Subject: [PATCH] Turned off prod debugging, show_all_startup_errors = false; --- public/main.page | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/public/main.page b/public/main.page index 3cadbaf..a8fc52d 100644 --- a/public/main.page +++ b/public/main.page @@ -8,7 +8,7 @@ declare(strict_types=1); * @license https://mit-license.org/ */ -$show_all_startup_errors = true; // Always, Keep false on LIVE PROD SYS!! +$show_all_startup_errors = false; // Always, Keep false on LIVE PROD SYS!! if ($show_all_startup_errors) { ini_set('display_errors', 1); ini_set('display_startup_errors', 1); @@ -29,4 +29,4 @@ $returned_route = \tts\router::execute(); if ($returned_route["found"] === false) { $app = new \tts\app(); $app->load_controller(); -} \ No newline at end of file +}