From 86562b628e8691f343abfefc84549e571650f103 Mon Sep 17 00:00:00 2001 From: Jimako Date: Sun, 18 Dec 2022 20:47:57 +0100 Subject: [PATCH] missing national character from toAscii() part fix for national https://github.com/e107inc/e107/issues/4925 --- e107_handlers/e_parse_class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/e107_handlers/e_parse_class.php b/e107_handlers/e_parse_class.php index 5f2f50666c..90fd46d60b 100644 --- a/e107_handlers/e_parse_class.php +++ b/e107_handlers/e_parse_class.php @@ -1876,7 +1876,7 @@ public function toASCII($text) 'ā' => 'a', 'ē' => 'e', 'ģ' => 'g', 'ī' => 'i', 'ķ' => 'k', 'ļ' => 'l', 'ņ' => 'n', 'ū' => 'u', - 'ľ' => 'l', 'ŕ' => 'r', + 'ľ' => 'l', 'ŕ' => 'r', 'Ľ' => 'l', ); return str_replace(array_keys($char_map), $char_map, $text);