From: Michael Date: Fri, 18 Jan 2019 06:22:15 +0000 (+0000) Subject: Bugfix: Private posts of contacts hadn't been displayed on the contact's page X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=c8bfa0c6618852ba1832b0923043c60344b3567a;p=friendica.git Bugfix: Private posts of contacts hadn't been displayed on the contact's page --- diff --git a/src/Model/Contact.php b/src/Model/Contact.php index 7f309925f9..408a1ade4b 100644 --- a/src/Model/Contact.php +++ b/src/Model/Contact.php @@ -1414,7 +1414,7 @@ class Contact extends BaseObject $items = Item::inArray($r); - $o = conversation($a, $items, $pager, 'contacts', $update); + $o = conversation($a, $items, $pager, 'contacts', $update, false, 'commented', local_user()); } else { $r = Item::selectForUser(local_user(), [], $condition, $params);