summaryrefslogtreecommitdiff
path: root/app/Helper/Text.php
diff options
context:
space:
mode:
Diffstat (limited to 'app/Helper/Text.php')
-rw-r--r--app/Helper/Text.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/Helper/Text.php b/app/Helper/Text.php
index cfb557b1..790fc411 100644
--- a/app/Helper/Text.php
+++ b/app/Helper/Text.php
@@ -51,10 +51,10 @@ class Text extends \Core\Base
*/
public function truncate($value, $max_length = 85, $end = '[...]')
{
- $length = strlen($value);
+ $length = mb_strlen($value);
if ($length > $max_length) {
- return substr($value, 0, $max_length).' '.$end;
+ return mb_substr($value, 0, $max_length).' '.$end;
}
return $value;