From b6c8b05cf72917a70f1563d2e9de0291272b8e26 Mon Sep 17 00:00:00 2001 From: fowr <89118232+perdedora@users.noreply.github.com> Date: Thu, 30 Mar 2023 17:52:38 -0300 Subject: [PATCH] change the default of twig_auto_reload to false --- inc/config.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inc/config.php b/inc/config.php index 76aa9c3d..ddcb55cf 100644 --- a/inc/config.php +++ b/inc/config.php @@ -48,7 +48,7 @@ // Warn about deprecations? See vichan-devel/vichan#363 and https://www.youtube.com/watch?v=9crnlHLVdno $config['deprecation_errors'] = false; // Skip cache in twig. this is already enabled with debug - $config['twig_auto_reload'] = true; + $config['twig_auto_reload'] = false; // EXPLAIN all SQL queries (when in debug mode). $config['debug_explain'] = false;