Missing gravity
This commit is contained in:
parent
b837c487c5
commit
9328eee550
1 changed files with 3 additions and 3 deletions
|
@ -79,7 +79,7 @@ class Item
|
||||||
const DELIVER_FIELDLIST = ['uid', 'id', 'parent', 'uri-id', 'uri', 'thr-parent', 'parent-uri', 'guid',
|
const DELIVER_FIELDLIST = ['uid', 'id', 'parent', 'uri-id', 'uri', 'thr-parent', 'parent-uri', 'guid',
|
||||||
'parent-guid', 'created', 'edited', 'verb', 'object-type', 'object', 'target',
|
'parent-guid', 'created', 'edited', 'verb', 'object-type', 'object', 'target',
|
||||||
'private', 'title', 'body', 'location', 'coord', 'app',
|
'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',
|
'allow_cid', 'allow_gid', 'deny_cid', 'deny_gid',
|
||||||
'author-id', 'author-link', 'owner-link', 'contact-uid',
|
'author-id', 'author-link', 'owner-link', 'contact-uid',
|
||||||
'signed_text', 'signature', 'signer', 'network'];
|
'signed_text', 'signature', 'signer', 'network'];
|
||||||
|
@ -1066,7 +1066,7 @@ class Item
|
||||||
|
|
||||||
// clean up categories and tags so they don't end up as orphans
|
// 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);
|
$cnt = preg_match_all('/<(.*?)>/', $item['file'], $matches, PREG_SET_ORDER);
|
||||||
|
|
||||||
if ($cnt) {
|
if ($cnt) {
|
||||||
|
@ -1075,7 +1075,7 @@ class Item
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
$matches = false;
|
$matches = [];
|
||||||
|
|
||||||
$cnt = preg_match_all('/\[(.*?)\]/', $item['file'], $matches, PREG_SET_ORDER);
|
$cnt = preg_match_all('/\[(.*?)\]/', $item['file'], $matches, PREG_SET_ORDER);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue