Standards and some more replace item calls
This commit is contained in:
parent
51a58ec2e2
commit
b705a91ccd
2 changed files with 3 additions and 3 deletions
|
@ -640,7 +640,7 @@ function photos_post(App $a)
|
||||||
$arr['deny_gid'] = $p[0]['deny_gid'];
|
$arr['deny_gid'] = $p[0]['deny_gid'];
|
||||||
$arr['visible'] = 1;
|
$arr['visible'] = 1;
|
||||||
$arr['verb'] = ACTIVITY_TAG;
|
$arr['verb'] = ACTIVITY_TAG;
|
||||||
$arr["gravity"] = GRAVITY_PARENT;
|
$arr['gravity'] = GRAVITY_PARENT;
|
||||||
$arr['object-type'] = ACTIVITY_OBJ_PERSON;
|
$arr['object-type'] = ACTIVITY_OBJ_PERSON;
|
||||||
$arr['target-type'] = ACTIVITY_OBJ_IMAGE;
|
$arr['target-type'] = ACTIVITY_OBJ_IMAGE;
|
||||||
$arr['tag'] = $tagged[4];
|
$arr['tag'] = $tagged[4];
|
||||||
|
|
|
@ -24,7 +24,7 @@ class Term
|
||||||
$profile_base_diaspora = $profile_data['host'] . $profile_path . '/u/';
|
$profile_base_diaspora = $profile_data['host'] . $profile_path . '/u/';
|
||||||
|
|
||||||
$fields = ['guid', 'uid', 'id', 'edited', 'deleted', 'created', 'received', 'title', 'body', 'tag', 'parent'];
|
$fields = ['guid', 'uid', 'id', 'edited', 'deleted', 'created', 'received', 'title', 'body', 'tag', 'parent'];
|
||||||
$message = dba::selectFirst('item', $fields, ['id' => $itemid]);
|
$message = Item::selectFirst($fields, ['id' => $itemid]);
|
||||||
if (!DBM::is_result($message)) {
|
if (!DBM::is_result($message)) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
@ -130,7 +130,7 @@ class Term
|
||||||
*/
|
*/
|
||||||
public static function insertFromFileFieldByItemId($itemid)
|
public static function insertFromFileFieldByItemId($itemid)
|
||||||
{
|
{
|
||||||
$message = dba::selectFirst('item', ['uid', 'deleted', 'file'], ['id' => $itemid]);
|
$message = Item::selectFirst(['uid', 'deleted', 'file'], ['id' => $itemid]);
|
||||||
if (!DBM::is_result($message)) {
|
if (!DBM::is_result($message)) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue