]> git.mxchange.org Git - friendica.git/commitdiff
Missing gravity
authorMichael <heluecht@pirati.ca>
Fri, 29 May 2020 22:19:59 +0000 (22:19 +0000)
committerMichael <heluecht@pirati.ca>
Fri, 29 May 2020 22:19:59 +0000 (22:19 +0000)
src/Model/Item.php

index 0fab3ba07fb545d3494cb5cd50fc4e0fbd06aff9..b4d22055bcd6ba71399ff326747fa48919284a53 100644 (file)
@@ -79,7 +79,7 @@ class Item
        const DELIVER_FIELDLIST = ['uid', 'id', 'parent', 'uri-id', 'uri', 'thr-parent', 'parent-uri', 'guid',
                        'parent-guid', 'created', 'edited', 'verb', 'object-type', 'object', 'target',
                        'private', 'title', 'body', 'location', 'coord', 'app',
-                       'attach', 'deleted', 'extid', 'post-type',
+                       'attach', 'deleted', 'extid', 'post-type', 'gravity',
                        'allow_cid', 'allow_gid', 'deny_cid', 'deny_gid',
                        'author-id', 'author-link', 'owner-link', 'contact-uid',
                        'signed_text', 'signature', 'signer', 'network'];
@@ -1066,7 +1066,7 @@ class Item
 
                // clean up categories and tags so they don't end up as orphans
 
-               $matches = false;
+               $matches = [];
                $cnt = preg_match_all('/<(.*?)>/', $item['file'], $matches, PREG_SET_ORDER);
 
                if ($cnt) {
@@ -1075,7 +1075,7 @@ class Item
                        }
                }
 
-               $matches = false;
+               $matches = [];
 
                $cnt = preg_match_all('/\[(.*?)\]/', $item['file'], $matches, PREG_SET_ORDER);