This commit is contained in:
Michael 2023-03-17 18:01:51 +00:00
parent d058275723
commit e55f38cc98
3 changed files with 3 additions and 3 deletions

View file

@ -141,7 +141,7 @@ class Status extends BaseFactory
// Add the title to text / html if set
if (!empty($item['title'])) {
$text .= $item['title'] . ' ';
$title = sprintf("[h4]%s[/h4]\n", $item['title']);
$title = sprintf("[h4]%s[/h4]", $item['title']);
}
$statusnetHtml = BBCode::convertForUriId($item['uri-id'], BBCode::setMentionsToNicknames($title . ($item['raw-body'] ?? $item['body'])), BBCode::TWITTER_API);