diff --git a/pumpio/pumpio.php b/pumpio/pumpio.php index 42346fa4..187d08d4 100644 --- a/pumpio/pumpio.php +++ b/pumpio/pumpio.php @@ -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]"; diff --git a/twitter/twitter.php b/twitter/twitter.php index 6e447591..5167e022 100644 --- a/twitter/twitter.php +++ b/twitter/twitter.php @@ -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'],