Merge pull request #10782 from annando/display-uid

Prefer the local user when displaying items
This commit is contained in:
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

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]);
}