From 9fb420d426eecb72c0f3e2c0b602cdedac239f4a Mon Sep 17 00:00:00 2001 From: "Iglou.eu" Date: Thu, 29 Oct 2015 15:29:50 +0100 Subject: Update functions.inc.php Add //TRANSLIT to iconv for activate transliteration. --- include/functions.inc.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include/functions.inc.php') diff --git a/include/functions.inc.php b/include/functions.inc.php index a9ae35baf..60a1885e5 100644 --- a/include/functions.inc.php +++ b/include/functions.inc.php @@ -1631,7 +1631,7 @@ function convert_charset($str, $source_charset, $dest_charset) } if (function_exists('iconv')) { - return iconv($source_charset, $dest_charset, $str); + return iconv($source_charset, $dest_charset.'//TRANSLIT', $str); } if (function_exists('mb_convert_encoding')) { @@ -2092,4 +2092,4 @@ function safe_version_compare($a, $b, $op=null) } } -?> \ No newline at end of file +?> -- cgit v1.2.3