Prefer the local user when displaying items
This commit is contained in:
parent
57ac1e5b92
commit
d8447469b6
1 changed files with 2 additions and 2 deletions
|
@ -246,11 +246,11 @@ function display_content(App $a, $update = false, $update_uid = 0)
|
||||||
$page_uid = 0;
|
$page_uid = 0;
|
||||||
|
|
||||||
$parent = null;
|
$parent = null;
|
||||||
if (!empty($parent_uri_id)) {
|
if (!local_user() && !empty($parent_uri_id)) {
|
||||||
$parent = Post::selectFirst(['uid'], ['uri-id' => $parent_uri_id, 'wall' => true]);
|
$parent = Post::selectFirst(['uid'], ['uri-id' => $parent_uri_id, 'wall' => true]);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (DBA::isResult($parent)) {
|
if (!local_user() && DBA::isResult($parent)) {
|
||||||
$page_uid = $page_uid ?? 0 ?: $parent['uid'];
|
$page_uid = $page_uid ?? 0 ?: $parent['uid'];
|
||||||
$is_remote_contact = Session::getRemoteContactID($page_uid);
|
$is_remote_contact = Session::getRemoteContactID($page_uid);
|
||||||
if ($is_remote_contact) {
|
if ($is_remote_contact) {
|
||||||
|
|
Loading…
Reference in a new issue