diff --git a/server/vendor/Tempest/Templating/Template.php b/server/vendor/Tempest/Templating/Template.php index 3d025b2..6e2a2c5 100644 --- a/server/vendor/Tempest/Templating/Template.php +++ b/server/vendor/Tempest/Templating/Template.php @@ -21,7 +21,7 @@ class Template extends HTMLOutput */ public static function load($file) { - $path = path_normalize(APP_ROOT . Config::data("paths.templates", "/client/templates/") . $file, SEP, false, false); + $path = APP_ROOT . path_normalize(Config::data("paths.templates", "/client/templates/") . $file, SEP, false, false); return new static(file_get_contents($path)); }