Merge pull request #56 from towards-a-new-leftypol/fixes

use mb_convert_encoding instead of iconv in slugify function in functions.php
This commit is contained in:
nonmakina 2020-12-29 16:23:55 -06:00 committed by GitHub
commit 361276b797

View File

@ -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 [^>]+>.*?<\/tinyboard>/s", '', $slug);