diff options
author | friendica <info@friendica.com> | 2013-09-22 22:52:48 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-09-22 22:52:48 -0700 |
commit | 956d275693c451c4d9ba60751704b80257f37433 (patch) | |
tree | 972cc4a680deea49aeae5c602ac60f1150911495 /mod/display.php | |
parent | 3ff96427506de4d7f230b94e333cb5f397ceb895 (diff) | |
download | volse-hubzilla-956d275693c451c4d9ba60751704b80257f37433.tar.gz volse-hubzilla-956d275693c451c4d9ba60751704b80257f37433.tar.bz2 volse-hubzilla-956d275693c451c4d9ba60751704b80257f37433.zip |
fixes for display and search privacy enforcement
Diffstat (limited to 'mod/display.php')
-rw-r--r-- | mod/display.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/mod/display.php b/mod/display.php index d19502eb1..476087ce7 100644 --- a/mod/display.php +++ b/mod/display.php @@ -113,16 +113,18 @@ function display_content(&$a, $update = 0, $load = false) { } } if($r === null) { +dbg(1); $r = q("SELECT * from item WHERE item_restrict = 0 and mid = '%s' AND ((( `item`.`allow_cid` = '' AND `item`.`allow_gid` = '' AND `item`.`deny_cid` = '' AND `item`.`deny_gid` = '' AND item_private = 0 ) - and uid in ( " . stream_perms_api_uids() . " )) + and owner_xchan in ( " . stream_perms_xchans() . " )) $sql_extra ) group by mid limit 1", dbesc($target_item['parent_mid']) ); +dbg(0); } } |