Multibyte letters problem
-
Many languages contains multibyte letters so if we need to cut strings we need to use multibyte commands so
toc.php:426 should looks like this
$html .= ‘<div class=”toc_sitemap_posts_section”><p class=”toc_sitemap_posts_letter”>’ . mb_strtolower(mb_substr($title,0,1)) . ‘</p><ul class=”toc_sitemap_posts_list”>’;mb_strtolower and mb_substr will solve problems with multibyte letters
- The topic ‘Multibyte letters problem’ is closed to new replies.