aboutsummaryrefslogtreecommitdiffstats
path: root/include/socgraph.php
diff options
context:
space:
mode:
authorFriendika <info@friendika.com>2011-11-03 16:00:52 -0700
committerFriendika <info@friendika.com>2011-11-03 16:00:52 -0700
commit014c91431e7796f9c5394efaae507837fe5c168b (patch)
treea940fa1c864a65052afebd83254cb9fb65daef08 /include/socgraph.php
parent4f4b03367aafc8efd36cf73ecab58cdd26802757 (diff)
downloadvolse-hubzilla-014c91431e7796f9c5394efaae507837fe5c168b.tar.gz
volse-hubzilla-014c91431e7796f9c5394efaae507837fe5c168b.tar.bz2
volse-hubzilla-014c91431e7796f9c5394efaae507837fe5c168b.zip
ignore suggestions
Diffstat (limited to 'include/socgraph.php')
-rw-r--r--include/socgraph.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/socgraph.php b/include/socgraph.php
index b9f53d6a6..84cfe4468 100644
--- a/include/socgraph.php
+++ b/include/socgraph.php
@@ -171,9 +171,11 @@ function suggestion_query($uid, $start = 0, $limit = 40) {
$r = q("SELECT count(glink.gcid) as `total`, gcontact.* from gcontact
left join glink on glink.gcid = gcontact.id
where uid = %d and not gcontact.nurl in ( select nurl from contact where uid = %d)
+ and not gcontact.id in ( select gcid from gcign where uid = %d )
group by glink.gcid order by total desc limit %d, %d ",
intval($uid),
intval($uid),
+ intval($uid),
intval($start),
intval($limit)
);