one more edge case in the public perms - don't match perms = 0 which is private, this and prior checkin are for issue #114

This commit is contained in:
friendica
2013-09-22 22:58:59 -07:00
parent 956d275693
commit a2b20bd58f
3 changed files with 7 additions and 6 deletions

View File

@@ -208,7 +208,7 @@ function search_content(&$a,$update = 0, $load = false) {
WHERE item_restrict = 0
AND ((( `item`.`allow_cid` = '' AND `item`.`allow_gid` = '' AND `item`.`deny_cid` = ''
AND `item`.`deny_gid` = '' AND item_private = 0 )
and owner_xchan in ( " . stream_perms_xchans() . " ))
and owner_xchan in ( " . stream_perms_xchans(($observer) ? PERMS_NETWORK : PERMS_PUBLIC) . " ))
$pub_sql )
$sql_extra
group by mid ORDER BY created DESC $pager_sql"