]> git.mxchange.org Git - friendica.git/commitdiff
revert permissions relaxation on community
authorfriendica <info@friendica.com>
Wed, 21 Mar 2012 21:56:06 +0000 (14:56 -0700)
committerfriendica <info@friendica.com>
Wed, 21 Mar 2012 21:56:06 +0000 (14:56 -0700)
mod/community.php

index cf459617ea8ef08495507d0f2000796e45476dbc..f8cc3305b104a615392b4970e77f62e7f29dda51 100755 (executable)
@@ -50,7 +50,7 @@ function community_content(&$a, $update = 0) {
                WHERE `item`.`visible` = 1 AND `item`.`deleted` = 0 and `item`.`moderated` = 0
                AND `item`.`allow_cid` = ''  AND `item`.`allow_gid` = '' 
                AND `item`.`deny_cid`  = '' AND `item`.`deny_gid`  = '' 
-               AND `item`.`private` = 0 AND `user`.`hidewall` = 0 
+               AND `item`.`private` = 0 AND `item`.`wall` = 1 AND `user`.`hidewall` = 0 
                AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0 "
        );
 
@@ -72,7 +72,7 @@ function community_content(&$a, $update = 0) {
                WHERE `item`.`visible` = 1 AND `item`.`deleted` = 0 and `item`.`moderated` = 0
                AND `item`.`allow_cid` = ''  AND `item`.`allow_gid` = '' 
                AND `item`.`deny_cid`  = '' AND `item`.`deny_gid`  = '' 
-               AND `item`.`private` = 0 AND `user`.`hidewall` = 0 
+               AND `item`.`private` = 0 AND `item`.`wall` = 1 AND `user`.`hidewall` = 0 
                AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
                ORDER BY `received` DESC LIMIT %d, %d ",
                intval($a->pager['start']),