Merge pull request #10782 from annando/display-uid

Prefer the local user when displaying items
pull/10789/head
Hypolite Petovan 2021-10-01 10:41:38 -04:00 committed by GitHub
commit 0c53adfd72
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -246,7 +246,7 @@ function display_content(App $a, $update = false, $update_uid = 0)
$page_uid = 0;
$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]);
}