From c2dbd40027e4dff887b6fc787c7dc0bee33a4049 Mon Sep 17 00:00:00 2001 From: Hypolite Petovan Date: Thu, 2 Jan 2025 18:30:30 -0500 Subject: [PATCH] Restore template engine registration for Worker execution - Template engine is used in BBCode processing --- src/App.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/App.php b/src/App.php index 97d36ac5b4..923400a21c 100644 --- a/src/App.php +++ b/src/App.php @@ -225,6 +225,8 @@ class App $this->registerErrorHandler(); + $this->registerTemplateEngine(); + /** @var Mode */ $mode = $this->container->create(Mode::class);