From: friendica Date: Fri, 29 Jun 2012 01:52:49 +0000 (-0700) Subject: remote_self feeds are not private X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=1830ecc9baa13b7d28f6a8250832832f2cc6a537;p=friendica.git remote_self feeds are not private --- diff --git a/include/items.php b/include/items.php index 494a547341..74ffc2f840 100755 --- a/include/items.php +++ b/include/items.php @@ -1895,8 +1895,12 @@ function consume_feed($xml,$importer,&$contact, &$hub, $datedir = 0, $pass = 0) // This is my contact on another system, but it's really me. // Turn this into a wall post. - if($contact['remote_self']) + if($contact['remote_self']) { $datarray['wall'] = 1; + if($contact['network'] === NETWORK_FEED) { + $datarray['private'] = 0; + } + } $datarray['parent-uri'] = $item_id; $datarray['uid'] = $importer['uid'];