From 472a9057316063b556981d5049cc678232a36dbb Mon Sep 17 00:00:00 2001 From: friendica Date: Sat, 5 Jan 2013 15:27:38 -0800 Subject: fix live update on channel page --- mod/channel.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'mod') diff --git a/mod/channel.php b/mod/channel.php index 8dab365d8..c8a8d38ba 100644 --- a/mod/channel.php +++ b/mod/channel.php @@ -135,17 +135,17 @@ function channel_content(&$a, $update = 0, $load = false) { if(($update) && (! $load)) { + $r = q("SELECT distinct(parent) AS `item_id` from item left join abook on item.author_xchan = abook.abook_xchan WHERE uid = %d AND item_restrict = 0 - AND (item_flags & %d) AND ( item_flags & %d ) AND ( item_flags & %d ) + AND (item_flags & %d) AND ( item_flags & %d ) AND ((abook.abook_flags & %d) = 0 or abook.abook_flags is null) $sql_extra ORDER BY created DESC", intval($a->profile['profile_uid']), intval(ITEM_WALL), intval(ITEM_UNSEEN), - intval(ITEM_THREAD_TOP), intval(ABOOK_FLAG_BLOCKED) ); -- cgit v1.2.3