From 070d0d2a2ef8b8f1c6e1b646fa7f578733d366d7 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Fri, 30 Dec 2005 21:05:26 +0100 Subject: remove headlines overflow hack, made truncate_string() utf-8 aware --- functions.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'functions.php') diff --git a/functions.php b/functions.php index de5eb8a2e..f40ce7618 100644 --- a/functions.php +++ b/functions.php @@ -821,8 +821,8 @@ } function truncate_string($str, $max_len) { - if (strlen($str) > $max_len) { - return substr($str, 0, $max_len) . "..."; + if (mb_strlen($str) > $max_len - 3) { + return mb_substr($str, 0, $max_len) . "..."; } else { return $str; } -- cgit v1.2.3