]> git.mxchange.org Git - friendica.git/commitdiff
Fixes "parent-guid" notice - finally
authorMichael <heluecht@pirati.ca>
Sun, 5 May 2019 15:48:57 +0000 (15:48 +0000)
committerMichael <heluecht@pirati.ca>
Sun, 5 May 2019 15:48:57 +0000 (15:48 +0000)
src/Model/Item.php

index 0882f316dc40f8b7fbd1e19077aad081ec75ed9f..a01ff61143f06a461060fe55503be35da69dd8f3 100644 (file)
@@ -45,7 +45,7 @@ class Item extends BaseObject
 
        // Field list that is used to display the items
        const DISPLAY_FIELDLIST = [
-               'uid', 'id', 'parent', 'uri', 'thr-parent', 'parent-uri', 'guid', 'parent-guid', 'network', 'gravity',
+               'uid', 'id', 'parent', 'uri', 'thr-parent', 'parent-uri', 'guid', 'network', 'gravity',
                'commented', 'created', 'edited', 'received', 'verb', 'object-type', 'postopts', 'plink',
                'wall', 'private', 'starred', 'origin', 'title', 'body', 'file', 'attach', 'language',
                'content-warning', 'location', 'coord', 'app', 'rendered-hash', 'rendered-html', 'object',
@@ -62,7 +62,7 @@ class Item extends BaseObject
 
        // Field list that is used to deliver items via the protocols
        const DELIVER_FIELDLIST = ['uid', 'id', 'parent', 'uri', 'thr-parent', 'parent-uri', 'guid',
-                       'created', 'edited', 'verb', 'object-type', 'object', 'target',
+                       'parent-guid', 'created', 'edited', 'verb', 'object-type', 'object', 'target',
                        'private', 'title', 'body', 'location', 'coord', 'app',
                        'attach', 'tag', 'deleted', 'extid', 'post-type',
                        'allow_cid', 'allow_gid', 'deny_cid', 'deny_gid',