[twitter] Remove unused function parameter in twitter_expand_entities
- Remove duplicate assignment to $tags
This commit is contained in:
parent
29cf1539a7
commit
91a9d5e2ef
|
@ -1147,10 +1147,8 @@ function twitter_fetchuser(App $a, $uid, $screen_name = "", $user_id = "")
|
||||||
return $contact_id;
|
return $contact_id;
|
||||||
}
|
}
|
||||||
|
|
||||||
function twitter_expand_entities(App $a, $body, $item, $no_tags = false, $picture)
|
function twitter_expand_entities(App $a, $body, $item, $picture)
|
||||||
{
|
{
|
||||||
$tags = "";
|
|
||||||
|
|
||||||
$plain = $body;
|
$plain = $body;
|
||||||
|
|
||||||
if (isset($item->entities->urls)) {
|
if (isset($item->entities->urls)) {
|
||||||
|
@ -1234,10 +1232,6 @@ function twitter_expand_entities(App $a, $body, $item, $no_tags = false, $pictur
|
||||||
$body = add_page_info_to_body($body);
|
$body = add_page_info_to_body($body);
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($no_tags) {
|
|
||||||
return ["body" => $body, "tags" => "", "plain" => $plain];
|
|
||||||
}
|
|
||||||
|
|
||||||
$tags_arr = [];
|
$tags_arr = [];
|
||||||
|
|
||||||
foreach ($item->entities->hashtags AS $hashtag) {
|
foreach ($item->entities->hashtags AS $hashtag) {
|
||||||
|
@ -1302,7 +1296,7 @@ function twitter_expand_entities(App $a, $body, $item, $no_tags = false, $pictur
|
||||||
* @param object $post Twitter object with the post
|
* @param object $post Twitter object with the post
|
||||||
* @param array $postarray Array of the item that is about to be posted
|
* @param array $postarray Array of the item that is about to be posted
|
||||||
*
|
*
|
||||||
* @return $picture string Returns a a single picture string if it isn't a media post
|
* @return $picture string Image URL or empty string
|
||||||
*/
|
*/
|
||||||
function twitter_media_entities($post, &$postarray)
|
function twitter_media_entities($post, &$postarray)
|
||||||
{
|
{
|
||||||
|
@ -1480,7 +1474,7 @@ function twitter_createpost(App $a, $uid, $post, $self, $create_user, $only_exis
|
||||||
// Search for media links
|
// Search for media links
|
||||||
$picture = twitter_media_entities($post, $postarray);
|
$picture = twitter_media_entities($post, $postarray);
|
||||||
|
|
||||||
$converted = twitter_expand_entities($a, $postarray['body'], $post, false, $picture);
|
$converted = twitter_expand_entities($a, $postarray['body'], $post, $picture);
|
||||||
$postarray['body'] = $converted["body"];
|
$postarray['body'] = $converted["body"];
|
||||||
$postarray['tag'] = $converted["tags"];
|
$postarray['tag'] = $converted["tags"];
|
||||||
$postarray['created'] = DateTimeFormat::utc($post->created_at);
|
$postarray['created'] = DateTimeFormat::utc($post->created_at);
|
||||||
|
|
Loading…
Reference in New Issue
Block a user