X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=include%2Fapi.php;h=fdebdd48bc25eb37f223c2d9967890af1f0767f2;hb=64069f8bd6308f6a7e4f35de0046f30735ae9718;hp=c04174313efca144ec6914b0890747b298a9af6a;hpb=92cf4879e5c5c3b295a7ac79d800b240282cc99c;p=friendica.git diff --git a/include/api.php b/include/api.php index c04174313e..fdebdd48bc 100644 --- a/include/api.php +++ b/include/api.php @@ -2033,7 +2033,7 @@ function api_statuses_repeat($type) Logger::log('API: api_statuses_repeat: '.$id); - $fields = ['uri-id', 'body', 'title', 'attach', 'tag', 'author-name', 'author-link', 'author-avatar', 'guid', 'created', 'plink']; + $fields = ['uri-id', 'body', 'title', 'attach', 'author-name', 'author-link', 'author-avatar', 'guid', 'created', 'plink']; $item = Item::selectFirst($fields, ['id' => $id, 'private' => [Item::PUBLIC, Item::UNLISTED]]); if (DBA::isResult($item) && $item['body'] != "") { @@ -2051,7 +2051,6 @@ function api_statuses_repeat($type) $post .= "[/share]"; } $_REQUEST['body'] = $post; - $_REQUEST['tag'] = $item['tag']; $_REQUEST['attach'] = $item['attach']; $_REQUEST['profile_uid'] = api_user(); $_REQUEST['api_source'] = true;