Add feedback (title/text/html)
This commit is contained in:
parent
4c77e99f89
commit
e61ed41972
|
@ -119,20 +119,18 @@ class Status extends BaseFactory
|
||||||
|
|
||||||
$friendica_comments = Post::countPosts(['thr-parent-id' => $item['uri-id'], 'deleted' => false, 'gravity' => GRAVITY_COMMENT]);
|
$friendica_comments = Post::countPosts(['thr-parent-id' => $item['uri-id'], 'deleted' => false, 'gravity' => GRAVITY_COMMENT]);
|
||||||
|
|
||||||
$text = '';
|
$text = '';
|
||||||
|
$title = '';
|
||||||
|
|
||||||
// Add the title to text / html if set
|
// Add the title to text / html if set
|
||||||
if (!empty($item['title'])) {
|
if (!empty($item['title'])) {
|
||||||
$text .= $item['title'] . ' ';
|
$text .= $item['title'] . ' ';
|
||||||
|
$title = sprintf("[h4]%s[/h4]\n", $item['title']);
|
||||||
$title = sprintf("[h4]%s[/h4]\n", $item['title']);
|
|
||||||
$statusnetHtml = BBCode::convertForUriId($item['uri-id'], BBCode::setMentionsToNicknames($title . $item['raw-body'] ?? $item['body']), BBCode::API);
|
|
||||||
$friendicaHtml = BBCode::convertForUriId($item['uri-id'], $title . $item['body'], BBCode::EXTERNAL);
|
|
||||||
} else {
|
|
||||||
$statusnetHtml = BBCode::convertForUriId($item['uri-id'], BBCode::setMentionsToNicknames($item['raw-body'] ?? $item['body']), BBCode::API);
|
|
||||||
$friendicaHtml = BBCode::convertForUriId($item['uri-id'], $item['body'], BBCode::EXTERNAL);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$statusnetHtml = BBCode::convertForUriId($item['uri-id'], BBCode::setMentionsToNicknames($title . ($item['raw-body'] ?? $item['body'])), BBCode::API);
|
||||||
|
$friendicaHtml = BBCode::convertForUriId($item['uri-id'], $title . $item['body'], BBCode::EXTERNAL);
|
||||||
|
|
||||||
$text .= Post\Media::addAttachmentsToBody($item['uri-id'], $item['body']);
|
$text .= Post\Media::addAttachmentsToBody($item['uri-id'], $item['body']);
|
||||||
|
|
||||||
$text = trim(HTML::toPlaintext(BBCode::convertForUriId($item['uri-id'], $text, BBCode::API), 0));
|
$text = trim(HTML::toPlaintext(BBCode::convertForUriId($item['uri-id'], $text, BBCode::API), 0));
|
||||||
|
|
Loading…
Reference in a new issue