mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-05-22 05:15:29 +09:00
NOISSUE windows에서 설치 시 문제 수정.
This commit is contained in:
parent
6949fe2d41
commit
5a6558dfdc
1 changed files with 3 additions and 3 deletions
|
|
@ -230,9 +230,9 @@ class FileHandler
|
||||||
$path = self::getRealPath($path);
|
$path = self::getRealPath($path);
|
||||||
$output = array();
|
$output = array();
|
||||||
|
|
||||||
if(substr($path, -1) != DIRECTORY_SEPARATOR)
|
if(substr($path, -1) != '/')
|
||||||
{
|
{
|
||||||
$path .= DIRECTORY_SEPARATOR;
|
$path .= '/';
|
||||||
}
|
}
|
||||||
|
|
||||||
if(!is_dir($path))
|
if(!is_dir($path))
|
||||||
|
|
@ -263,7 +263,7 @@ class FileHandler
|
||||||
$file = sprintf('%s%s', str_replace(_XE_PATH_, '', $path), $file);
|
$file = sprintf('%s%s', str_replace(_XE_PATH_, '', $path), $file);
|
||||||
}
|
}
|
||||||
|
|
||||||
$output[] = str_replace(array('/\\', '//'), DIRECTORY_SEPARATOR, $file);
|
$output[] = str_replace(array('/\\', '//'), '/', $file);
|
||||||
}
|
}
|
||||||
|
|
||||||
return $output;
|
return $output;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue