[twitter] Add support for $is_quote_share in twitter_convert_share
This commit is contained in:
parent
8153276e63
commit
4eff144765
|
@ -1891,7 +1891,7 @@ function twitter_update_mentions($body)
|
||||||
return $return;
|
return $return;
|
||||||
}
|
}
|
||||||
|
|
||||||
function twitter_convert_share(array $attributes, array $author_contact, $content)
|
function twitter_convert_share(array $attributes, array $author_contact, $content, $is_quote_share)
|
||||||
{
|
{
|
||||||
if ($author_contact['network'] == Protocol::TWITTER) {
|
if ($author_contact['network'] == Protocol::TWITTER) {
|
||||||
$mention = '@' . $author_contact['nickname'];
|
$mention = '@' . $author_contact['nickname'];
|
||||||
|
@ -1899,5 +1899,5 @@ function twitter_convert_share(array $attributes, array $author_contact, $conten
|
||||||
$mention = Protocol::formatMention($attributes['profile'], $attributes['author']);
|
$mention = Protocol::formatMention($attributes['profile'], $attributes['author']);
|
||||||
}
|
}
|
||||||
|
|
||||||
return 'RT ' . $mention . ': ' . $content;
|
return ($is_quote_share ? "\n\n" : '' ) . 'RT ' . $mention . ': ' . $content . "\n\n" . $attributes['link'];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue