Ver Fonte

Core\Files: Change file name transliteration

Visman há 1 ano atrás
pai
commit
e6d66f7e0a
1 ficheiros alterados com 1 adições e 1 exclusões
  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
         );