mirror of
https://github.com/friendica/friendica
synced 2025-04-27 20:30:13 +00:00
Transmit the quoted part in the source
This commit is contained in:
parent
8cec89195b
commit
4dd2d7ebab
3 changed files with 12 additions and 11 deletions
|
@ -597,7 +597,7 @@ class Item
|
|||
return $body;
|
||||
}
|
||||
|
||||
return $body . "\n" . $this->createSharedBlockByArray($shared_item, true);
|
||||
return BBCode::removeSharedData($body) . "\n" . $this->createSharedBlockByArray($shared_item, true);
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -748,6 +748,8 @@ class Item
|
|||
return $body;
|
||||
}
|
||||
|
||||
$body = BBCode::removeSharedData($body);
|
||||
|
||||
$body .= "\n♲ " . ($post['plink'] ?: $post['uri']);
|
||||
|
||||
return $body;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue