From b59b213b82aa69f3fea553bbfb3dbd7dcd205742 Mon Sep 17 00:00:00 2001 From: Dave Smith-Hayes Date: Mon, 17 Jun 2024 21:57:21 -0400 Subject: [PATCH] Use templates dir constant for templates dir. --- app/src/Bootstrap.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/Bootstrap.php b/app/src/Bootstrap.php index bc36e12..817f6ab 100644 --- a/app/src/Bootstrap.php +++ b/app/src/Bootstrap.php @@ -182,7 +182,7 @@ class Bootstrap // Twig $templateCache = false; - $twig = Twig::create(APP_LOG_DIR, [ 'cache' => $templateCache ]); + $twig = Twig::create(APP_TEMPLATES_DIR, [ 'cache' => $templateCache ]); // Add the global variables $twig->getEnvironment()