From 8920cb74912868fa0d2aa6b5266ffcd6b87338d5 Mon Sep 17 00:00:00 2001 From: Kijin Sung Date: Thu, 5 Feb 2026 22:39:33 +0900 Subject: [PATCH] Fix incorrect path conversion on Windows #2667 --- modules/module/module.model.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/module/module.model.php b/modules/module/module.model.php index 3c4182a46..02c1a8e72 100644 --- a/modules/module/module.model.php +++ b/modules/module/module.model.php @@ -1012,7 +1012,7 @@ class ModuleModel extends Module $skin_list[$skin_name] = $skin_info; } - $tmpPath = strtr($path, array('/' => ' ')); + $tmpPath = strtr($path, array('/' => ' ', '\\' => ' ')); $tmpPath = trim($tmpPath); $module = array_last(explode(' ', $tmpPath));