pm_snippet() should probably use mb_substr if it's using mb_strlen.
This commit is contained in:
parent
3bcc87caf2
commit
1d4fced75a
@ -118,7 +118,7 @@ function pm_snippet($body, $len=null) {
|
||||
// calculate strlen() so we can add "..." after if needed
|
||||
$strlen = mb_strlen($body);
|
||||
|
||||
$body = substr($body, 0, $len);
|
||||
$body = mb_substr($body, 0, $len);
|
||||
|
||||
// Re-escape the characters.
|
||||
return '<em>' . utf8tohtml($body) . ($strlen > $len ? '…' : '') . '</em>';
|
||||
|
Loading…
Reference in New Issue
Block a user