From 12db369ca71f3ba1cfadd8890ebcb203927083f6 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Sat, 31 Dec 2005 06:38:40 +0100 Subject: truncate_string() now actually is utf-8 compatible --- functions.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'functions.php') diff --git a/functions.php b/functions.php index f40ce7618..7d65c9038 100644 --- a/functions.php +++ b/functions.php @@ -821,8 +821,8 @@ } function truncate_string($str, $max_len) { - if (mb_strlen($str) > $max_len - 3) { - return mb_substr($str, 0, $max_len) . "..."; + if (mb_strlen($str, "utf-8") > $max_len - 3) { + return mb_substr($str, 0, $max_len, "utf-8") . "..."; } else { return $str; } -- cgit v1.2.3