mirror of
https://github.com/friendica/friendica
synced 2024-11-20 13:03:41 +00:00
replace embedded images before statustext is shortened
This commit is contained in:
parent
b1e83f331e
commit
ba6f391635
1 changed files with 5 additions and 5 deletions
|
@ -1907,6 +1907,9 @@
|
|||
$html = bbcode(api_clean_plain_items($item['body']), false, false, 2, true);
|
||||
$statusbody = trim(html2plain($html, 0));
|
||||
|
||||
// handle data: images
|
||||
$statusbody = api_format_items_embeded_images($item,$statusbody);
|
||||
|
||||
$statustitle = trim($item['title']);
|
||||
|
||||
if (($statustitle != '') and (strpos($statusbody, $statustitle) !== false))
|
||||
|
@ -1919,9 +1922,6 @@
|
|||
|
||||
$statushtml = trim(bbcode($item['body'], false, false));
|
||||
|
||||
// handle data: images
|
||||
|
||||
$statustext = api_format_items_embeded_images($item,$statustext);
|
||||
|
||||
$status = array(
|
||||
'text' => $statustext,
|
||||
|
|
Loading…
Reference in a new issue