Do truncation by actual character count.
Using substr can cut a multi-byte character in half. Also, if a long post with many multi-byte characters was reported, then the mod interface would temporarily extend the body_truncate_char setting to be sure to cover all of the *characters* in the report, but this function would interpret body_truncate_char as a number of *bytes*, so sometimes the end of the report's appended html would be cut off.
This commit is contained in:
parent
948dfe8555
commit
b63d94838d
@ -170,7 +170,7 @@ function truncate($body, $url, $max_lines = false, $max_chars = false) {
|
|||||||
$body = $m[0];
|
$body = $m[0];
|
||||||
}
|
}
|
||||||
|
|
||||||
$body = substr($body, 0, $max_chars);
|
$body = mb_substr($body, 0, $max_chars);
|
||||||
|
|
||||||
if ($body != $original_body) {
|
if ($body != $original_body) {
|
||||||
// Remove any corrupt tags at the end
|
// Remove any corrupt tags at the end
|
||||||
|
Loading…
Reference in New Issue
Block a user