Merge pull request #989 from MrPetovan/task/move-share-header

[various] Replace share_header calls with BBCode::getShareOpeningTag
This commit is contained in:
Michael Vogel 2020-06-18 17:55:32 +02:00 committed by GitHub
commit 1e451a3490
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -1277,7 +1277,7 @@ function pumpio_dopost(App $a, $client, $uid, $self, $post, $own_id, $threadcomp
$created = '';
}
$postarray['body'] = share_header($share_author, $post->object->author->url,
$postarray['body'] = Friendica\Content\Text\BBCode::getShareOpeningTag($share_author, $post->object->author->url,
$post->object->author->image->url, "",
$created, $post->links->self->href).
$postarray['body']."[/share]";

View File

@ -904,7 +904,7 @@ function twitter_do_mirrorpost(App $a, $uid, $post)
return [];
}
$datarray['body'] = "\n" . share_header(
$datarray['body'] = "\n" . BBCode::getShareOpeningTag(
$item['author-name'],
$item['author-link'],
$item['author-avatar'],
@ -1627,7 +1627,7 @@ function twitter_createpost(App $a, $uid, $post, array $self, $create_user, $onl
} else {
$quoted = twitter_createpost($a, $uid, $post->quoted_status, $self, false, false, true, $uriid);
if (!empty($quoted['body'])) {
$postarray['body'] .= "\n" . share_header(
$postarray['body'] .= "\n" . BBCode::getShareOpeningTag(
$quoted['author-name'],
$quoted['author-link'],
$quoted['author-avatar'],