summaryrefslogtreecommitdiff
path: root/functions.php
diff options
context:
space:
mode:
Diffstat (limited to 'functions.php')
-rw-r--r--functions.php4
1 files changed, 2 insertions, 2 deletions
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;
}