]> git.mxchange.org Git - friendica.git/commitdiff
Added todo
authorMichael <heluecht@pirati.ca>
Fri, 17 Apr 2020 13:35:12 +0000 (13:35 +0000)
committerMichael <heluecht@pirati.ca>
Fri, 17 Apr 2020 13:35:12 +0000 (13:35 +0000)
include/api.php

index 75e66349ebc11eecf97e4ace30e7b80d182439a8..36b08f08f8cc82838c3a1f52313d07699974eedf 100644 (file)
@@ -2041,7 +2041,7 @@ function api_statuses_repeat($type)
 
        Logger::log('API: api_statuses_repeat: '.$id);
 
-       $fields = ['body', 'title', 'attach', 'tag', 'author-name', 'author-link', 'author-avatar', 'guid', 'created', 'plink'];
+       $fields = ['uri-id', 'body', 'title', 'attach', 'tag', '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'] != "") {
@@ -2069,6 +2069,8 @@ function api_statuses_repeat($type)
                }
 
                $item_id = item_post($a);
+
+               /// @todo Copy tags from the original post to the new one
        } else {
                throw new ForbiddenException();
        }