From: Michael Date: Thu, 5 Dec 2019 05:24:29 +0000 (+0000) Subject: Handle resharing of items with title via the API X-Git-Url: https://git.mxchange.org/?p=friendica.git;a=commitdiff_plain;h=abf841ff79487af5e54e1acd6dc52757ff5cf347 Handle resharing of items with title via the API --- diff --git a/include/api.php b/include/api.php index 27793ac280..a603f6cc87 100644 --- a/include/api.php +++ b/include/api.php @@ -2019,7 +2019,7 @@ function api_statuses_repeat($type) Logger::log('API: api_statuses_repeat: '.$id); - $fields = ['body', 'author-name', 'author-link', 'author-avatar', 'guid', 'created', 'plink']; + $fields = ['body', 'title', 'attach', 'tag', 'author-name', 'author-link', 'author-avatar', 'guid', 'created', 'plink']; $item = Item::selectFirst($fields, ['id' => $id, 'private' => false]); if (DBA::isResult($item) && $item['body'] != "") { @@ -2029,10 +2029,16 @@ function api_statuses_repeat($type) } else { $post = share_header($item['author-name'], $item['author-link'], $item['author-avatar'], $item['guid'], $item['created'], $item['plink']); + if (!empty($item['title'])) { + $post .= '[h3]' . $item['title'] . "[/h3]\n"; + } + $post .= $item['body']; $post .= "[/share]"; } $_REQUEST['body'] = $post; + $_REQUEST['tag'] = $item['tag']; + $_REQUEST['attach'] = $item['attach']; $_REQUEST['profile_uid'] = api_user(); $_REQUEST['api_source'] = true;