diff options
author | Evgeny Zinoviev <me@ch1p.io> | 2024-02-09 19:27:58 +0300 |
---|---|---|
committer | Evgeny Zinoviev <me@ch1p.io> | 2024-02-09 19:27:58 +0300 |
commit | af1044821c155221a316e0fe0ee9bdc5d4c5ac1d (patch) | |
tree | 3ed00ec89dcd13cf9e98a40e64508571eb4a9ee0 /engine | |
parent | 198ecc0c847f42827db44e06252384cb48457ef8 (diff) | |
parent | 9dd2345ecfff4f7d65ec106a8aee8d866c972585 (diff) |
Merge branch 'master' of ch1p.io:ch1p_io_web
Diffstat (limited to 'engine')
-rw-r--r-- | engine/skin.php | 2 |
1 files changed, 1 insertions, 1 deletions
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) { |