mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-04-02 01:52:10 +09:00
Fix incorrect path conversion on Windows #2667
This commit is contained in:
parent
d824bc9da3
commit
8920cb7491
1 changed files with 1 additions and 1 deletions
|
|
@ -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));
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue