diff --git a/inc/functions.php b/inc/functions.php index e276ac3f..3a624ff1 100755 --- a/inc/functions.php +++ b/inc/functions.php @@ -2717,7 +2717,8 @@ function slugify($post) { $slug = mb_convert_encoding($slug, "UTF-8", "UTF-8"); // Transliterate local characters like ΓΌ, I wonder how would it work for weird alphabets :^) - $slug = iconv("UTF-8", "ASCII//TRANSLIT//IGNORE", $slug); + // $slug = iconv("UTF-8", "ASCII//TRANSLIT//IGNORE", $slug); + $slug = mb_convert_encoding($slug, "ASCII", "UTF-8"); // Remove Tinyboard custom markup $slug = preg_replace("/]+>.*?<\/tinyboard>/s", '', $slug);