X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Ffetch.php;h=5f1b24a79209f181c2a8e01a493c1c73bb5601cb;hb=5af9596dde162b1b9819869e3d5129f571a1c503;hp=da616ad5bb103ba16a7726a8fbff7135864f5ce5;hpb=e3584daef9c7801bce8d504152c5ccbd3ab492b4;p=friendica.git diff --git a/mod/fetch.php b/mod/fetch.php index da616ad5bb..5f1b24a792 100644 --- a/mod/fetch.php +++ b/mod/fetch.php @@ -23,7 +23,8 @@ function fetch_init(App $a) $guid = $a->argv[2]; // Fetch the item - $fields = ['uid', 'title', 'body', 'guid', 'contact-id', 'private', 'created', 'app', 'location', 'coord', 'network']; + $fields = ['uid', 'title', 'body', 'guid', 'contact-id', 'private', 'created', 'app', 'location', 'coord', 'network', + 'event-id', 'resource-id', 'author-link', 'owner-link', 'attach']; $condition = ['wall' => true, 'private' => false, 'guid' => $guid, 'network' => [NETWORK_DFRN, NETWORK_DIASPORA]]; $item = Item::selectFirst($fields, $condition); if (!DBM::is_result($item)) {