diff options
author | friendica <info@friendica.com> | 2012-06-30 05:16:30 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-06-30 05:16:30 -0700 |
commit | 6cc844b2f984f445549acc79105ae32baab20484 (patch) | |
tree | 6dc73ba991c93371b2b7e4dd7ad0e9b273d102ac /include | |
parent | 31718968c66b77354ed52b06a2f8f8456dd94ee4 (diff) | |
download | volse-hubzilla-6cc844b2f984f445549acc79105ae32baab20484.tar.gz volse-hubzilla-6cc844b2f984f445549acc79105ae32baab20484.tar.bz2 volse-hubzilla-6cc844b2f984f445549acc79105ae32baab20484.zip |
restore 'shareable' to feeds after recent feed privacy re-factoring
Diffstat (limited to 'include')
-rw-r--r-- | include/conversation.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/conversation.php b/include/conversation.php index f2fb2e97b..bbb6a1f85 100644 --- a/include/conversation.php +++ b/include/conversation.php @@ -546,7 +546,7 @@ function conversation(&$a, $items, $mode, $update, $preview = false) { } $likebuttons = ''; - $shareable = ((($profile_owner == local_user()) && (! $item['private'] == 1)) ? true : false); + $shareable = ((($profile_owner == local_user()) && ($item['private'] != 1)) ? true : false); if($page_writeable) { /* if($toplevelpost) { */ |