From 9dd2345ecfff4f7d65ec106a8aee8d866c972585 Mon Sep 17 00:00:00 2001 From: Evgeny Zinoviev Date: Thu, 1 Feb 2024 00:18:42 +0300 Subject: use .phps extension for skin files --- engine/skin.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'engine/skin.php') diff --git a/engine/skin.php b/engine/skin.php index 6150668..a589370 100644 --- a/engine/skin.php +++ b/engine/skin.php @@ -96,7 +96,7 @@ class SkinContext { function __construct(string $namespace) { $this->ns = $namespace; - require_once APP_ROOT.str_replace('\\', DIRECTORY_SEPARATOR, $namespace).'.skin.php'; + require_once APP_ROOT.str_replace('\\', DIRECTORY_SEPARATOR, $namespace).'.phps'; } function __call($name, array $arguments) { -- cgit v1.2.3