Merge pull request #990 from MrPetovan/task/share-block-guid

[various] Update getShareOpeningTag::getShareOpeningTag method signature
This commit is contained in:
Michael Vogel 2020-06-23 21:26:02 +02:00 committed by GitHub
commit 94c658b105
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 8 deletions

View File

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

View File

@ -915,9 +915,8 @@ function twitter_do_mirrorpost(App $a, $uid, $post)
$item['author-name'], $item['author-name'],
$item['author-link'], $item['author-link'],
$item['author-avatar'], $item['author-avatar'],
'', $item['plink'],
$item['created'], $item['created']
$item['plink']
); );
$datarray['body'] .= $item['body'] . '[/share]'; $datarray['body'] .= $item['body'] . '[/share]';
@ -1644,9 +1643,8 @@ function twitter_createpost(App $a, $uid, $post, array $self, $create_user, $onl
$quoted['author-name'], $quoted['author-name'],
$quoted['author-link'], $quoted['author-link'],
$quoted['author-avatar'], $quoted['author-avatar'],
"", $quoted['plink'],
$quoted['created'], $quoted['created']
$quoted['plink']
); );
$postarray['body'] .= $quoted['body'] . '[/share]'; $postarray['body'] .= $quoted['body'] . '[/share]';