kopia lustrzana https://github.com/friendica/friendica
Merge pull request #6332 from annando/assign-uid
Only assign a uid to the profile if not defined by nowpull/6333/head
commit
c07fa5d069
|
@ -291,8 +291,8 @@ function display_content(App $a, $update = false, $update_uid = 0)
|
||||||
|
|
||||||
$parent = Item::selectFirst(['uid'], ['uri' => $item_parent_uri, 'wall' => true]);
|
$parent = Item::selectFirst(['uid'], ['uri' => $item_parent_uri, 'wall' => true]);
|
||||||
if (DBA::isResult($parent)) {
|
if (DBA::isResult($parent)) {
|
||||||
$a->profile['uid'] = $parent['uid'];
|
$a->profile['uid'] = defaults($a->profile, 'uid', $parent['uid']);
|
||||||
$a->profile['profile_uid'] = $parent['uid'];
|
$a->profile['profile_uid'] = defaults($a->profile, 'profile_uid', $parent['uid']);
|
||||||
$is_remote_contact = Contact::isFollower(remote_user(), $a->profile['profile_uid']);
|
$is_remote_contact = Contact::isFollower(remote_user(), $a->profile['profile_uid']);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Ładowanie…
Reference in New Issue