mirror of
https://git.sekbaer.de/Friendica/friendica.git
synced 2025-06-08 00:04:27 +02:00
Merge branch 'develop' into phpstan-level-3
This commit is contained in:
commit
9ea4f591c7
11 changed files with 159 additions and 46 deletions
|
@ -363,7 +363,7 @@ class Processor
|
|||
return [];
|
||||
}
|
||||
|
||||
$account = Contact::selectFirstAccountUser(['pid'], ['id' => $contact['id']]);
|
||||
$account = Contact::selectAccountUserById($contact['id'], ['pid']);
|
||||
$item['owner-id'] = $item['author-id'] = $account['pid'];
|
||||
$item['uri-id'] = ItemURI::getIdByURI($item['uri']);
|
||||
|
||||
|
@ -424,7 +424,7 @@ class Processor
|
|||
return [];
|
||||
}
|
||||
|
||||
$account = Contact::selectFirstAccountUser(['pid'], ['id' => $contact['id']]);
|
||||
$account = Contact::selectAccountUserById($contact['id'], ['pid']);
|
||||
|
||||
$item['owner-id'] = $item['author-id'] = $account['pid'];
|
||||
$item['uri-id'] = ItemURI::getIdByURI($uri);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue