소스 검색

Core\Files: Change file name transliteration

Visman 1 년 전
부모
커밋
e6d66f7e0a
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      app/Core/Files.php

+ 1 - 1
app/Core/Files.php

@@ -972,7 +972,7 @@ class Files
     public function filterName(string $name): string
     {
         $name = \transliterator_transliterate(
-            "Any-Latin; NFD; [:Nonspacing Mark:] Remove; NFC; Lower();",
+            'Any-Latin; Latin-ASCII; Lower()', // "Any-Latin; NFD; [:Nonspacing Mark:] Remove; NFC; Lower();",
             $name
         );