diff options
author | friendica <info@friendica.com> | 2014-03-26 18:45:01 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-03-26 18:45:01 -0700 |
commit | ed14c1f224afadb5dd5417d4078f853ff97b30cb (patch) | |
tree | cd527019841d3b3bfd98e8cdefaf03154db64bb0 /include/items.php | |
parent | 150bc9866a24303c86b78614b58b8d01a245b424 (diff) | |
download | volse-hubzilla-ed14c1f224afadb5dd5417d4078f853ff97b30cb.tar.gz volse-hubzilla-ed14c1f224afadb5dd5417d4078f853ff97b30cb.tar.bz2 volse-hubzilla-ed14c1f224afadb5dd5417d4078f853ff97b30cb.zip |
more work on firehose
Diffstat (limited to 'include/items.php')
-rwxr-xr-x | include/items.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/items.php b/include/items.php index dd5f4aac1..5cc1ef05c 100755 --- a/include/items.php +++ b/include/items.php @@ -3767,7 +3767,7 @@ function zot_feed($uid,$observer_xchan,$mindate) { $r = q("SELECT item.*, item.id as item_id from item WHERE uid in (" . stream_perms_api_uids(PERMS_PUBLIC) . ") AND item_restrict = 0 and id = parent AND (item_flags & %d) - $sql_extra ORDER BY created ASC $limit", + and item_private = 0 ORDER BY created ASC $limit", intval($uid), intval(ITEM_WALL) ); |