returned templater

This commit is contained in:
Arsen Mirzaev Tatyano-Muradovich 2025-04-10 22:33:05 +07:00
parent 8c777e72c7
commit 1a05a0413d

View File

@ -74,6 +74,9 @@ class core extends controller
// Blocking requests from CloudFlare (better to write this blocking into nginx config file)
if (isset($$_SERVER['HTTP_USER_AGENT']) && $$_SERVER['HTTP_USER_AGENT'] === 'nginx-ssl early hints') return status::bruh->label;
// Initializing the view template engine instance
$$this->view = new templater($$this->session);
// For the extends system
parent::__construct(core: $$core);
}