]> git.mxchange.org Git - friendica.git/blobdiff - mod/fetch.php
Several more warnings ... (#5340)
[friendica.git] / mod / fetch.php
index da616ad5bb103ba16a7726a8fbff7135864f5ce5..5f1b24a79209f181c2a8e01a493c1c73bb5601cb 100644 (file)
@@ -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)) {