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

Merge pull request #4926 from Jimmi08/patch-1

Issue #4925 Missing national character from toAscii()
This commit is contained in:
Cameron
2022-12-26 10:54:29 -08:00
committed by GitHub

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);