1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-01 20:30:39 +02:00

missing national character from toAscii()

part fix for national https://github.com/e107inc/e107/issues/4925
This commit is contained in:
Jimako
2022-12-18 20:47:57 +01:00
committed by GitHub
parent 159fc98009
commit 86562b628e

View File

@@ -1876,7 +1876,7 @@ class e_parse
'ā' => 'a', 'ē' => 'e', 'ģ' => 'g', 'ī' => 'i', 'ķ' => 'k', 'ļ' => 'l', 'ņ' => 'n',
'ū' => 'u',
'ľ' => 'l', 'ŕ' => 'r',
'ľ' => 'l', 'ŕ' => 'r', 'Ľ' => 'l',
);
return str_replace(array_keys($char_map), $char_map, $text);