mirror of
https://github.com/friendica/friendica
synced 2025-05-04 23:44:10 +02:00
Centralize owner data fetch
This commit is contained in:
parent
e37cf8fea2
commit
df02238659
3 changed files with 36 additions and 31 deletions
|
@ -4051,28 +4051,10 @@ class Diaspora
|
|||
return;
|
||||
}
|
||||
|
||||
$r = dba::p("SELECT
|
||||
`contact`.*,
|
||||
`user`.`prvkey` AS `uprvkey`,
|
||||
`user`.`timezone`,
|
||||
`user`.`nickname`,
|
||||
`user`.`sprvkey`,
|
||||
`user`.`spubkey`,
|
||||
`user`.`page-flags`,
|
||||
`user`.`account-type`,
|
||||
`user`.`prvnets`
|
||||
FROM `contact`
|
||||
INNER JOIN `user`
|
||||
ON `user`.`uid` = `contact`.`uid`
|
||||
WHERE `contact`.`uid` = ?
|
||||
AND `contact`.`self` = 1
|
||||
LIMIT 1",
|
||||
$uid
|
||||
);
|
||||
if (!DBM::is_result($r)) {
|
||||
$owner = User::getOwnerDataById($uid);
|
||||
if (!$owner) {
|
||||
return;
|
||||
}
|
||||
$owner = $r[0];
|
||||
|
||||
if (!$recips) {
|
||||
$recips = q(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue