aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/socgraph.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/socgraph.php b/include/socgraph.php
index 678d13d11..3970acd0d 100644
--- a/include/socgraph.php
+++ b/include/socgraph.php
@@ -264,10 +264,12 @@ function suggestion_query($uid, $myxchan, $start = 0, $limit = 80) {
where not xchan_hash in ( select abook_xchan from abook where abook_channel = %d )
and not xchan_hash in ( select xchan from xign where uid = %d )
and xchan_hash != '%s'
+ and not ( xchan_flags & %d )
group by xchan_hash order by total desc limit %d, %d ",
intval($uid),
intval($uid),
dbesc($myxchan),
+ intval(XCHAN_FLAGS_HIDDEN),
intval($start),
intval($limit)
);