diff options
Diffstat (limited to 'engine/skin.php')
-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) { |