Using the constants
This commit is contained in:
parent
23aa9dffa0
commit
2a76290d19
|
@ -245,14 +245,7 @@ class DFRN
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!empty($ids)) {
|
if (!empty($ids)) {
|
||||||
$condition = ['id' => $ids];
|
$ret = Item::select(Item::DELIVER_FIELDLIST, ['id' => $ids]);
|
||||||
$fields = ['author-id', 'uid', 'id', 'parent', 'uri', 'thr-parent',
|
|
||||||
'parent-uri', 'created', 'edited', 'verb', 'object-type',
|
|
||||||
'guid', 'private', 'title', 'body', 'location', 'coord', 'app',
|
|
||||||
'attach', 'object', 'allow_cid', 'allow_gid', 'deny_cid', 'deny_gid',
|
|
||||||
'extid', 'target', 'tag', 'bookmark', 'deleted',
|
|
||||||
'author-link', 'owner-link', 'signed_text', 'signature', 'signer'];
|
|
||||||
$ret = Item::select($fields, $condition);
|
|
||||||
$items = dba::inArray($ret);
|
$items = dba::inArray($ret);
|
||||||
} else {
|
} else {
|
||||||
$items = [];
|
$items = [];
|
||||||
|
@ -336,13 +329,7 @@ class DFRN
|
||||||
$condition = ['id' => $item_id];
|
$condition = ['id' => $item_id];
|
||||||
}
|
}
|
||||||
|
|
||||||
$fields = ['author-id', 'uid', 'id', 'parent', 'uri', 'thr-parent',
|
$ret = Item::select(Item::DELIVER_FIELDLIST, $condition);
|
||||||
'parent-uri', 'created', 'edited', 'verb', 'object-type',
|
|
||||||
'guid', 'private', 'title', 'body', 'location', 'coord', 'app',
|
|
||||||
'attach', 'object', 'allow_cid', 'allow_gid', 'deny_cid', 'deny_gid',
|
|
||||||
'extid', 'target', 'tag', 'bookmark', 'deleted',
|
|
||||||
'author-link', 'owner-link', 'signed_text', 'signature', 'signer'];
|
|
||||||
$ret = Item::select($fields, $condition);
|
|
||||||
$items = dba::inArray($ret);
|
$items = dba::inArray($ret);
|
||||||
if (!DBM::is_result($items)) {
|
if (!DBM::is_result($items)) {
|
||||||
killme();
|
killme();
|
||||||
|
|
Loading…
Reference in New Issue
Block a user