we work with utf8 string so we should use multibyte functions
This commit is contained in:
parent
56e0a92d83
commit
c8ee4cc49f
|
@ -2444,8 +2444,8 @@ function api_convert_item($item)
|
||||||
$statustext = trim($statustitle."\n\n".$statusbody);
|
$statustext = trim($statustitle."\n\n".$statusbody);
|
||||||
}
|
}
|
||||||
|
|
||||||
if ((defaults($item, 'network', Protocol::PHANTOM) == Protocol::FEED) && (strlen($statustext)> 1000)) {
|
if ((defaults($item, 'network', Protocol::PHANTOM) == Protocol::FEED) && (mb_strlen($statustext)> 1000)) {
|
||||||
$statustext = substr($statustext, 0, 1000) . "... \n" . defaults($item, 'plink', '');
|
$statustext = mb_substr($statustext, 0, 1000) . "... \n" . defaults($item, 'plink', '');
|
||||||
}
|
}
|
||||||
|
|
||||||
$statushtml = BBCode::convert(api_clean_attachments($body), false);
|
$statushtml = BBCode::convert(api_clean_attachments($body), false);
|
||||||
|
|
Loading…
Reference in New Issue
Block a user