Small fixes to "nogroup"

This commit is contained in:
Michael 2017-11-29 20:59:06 +00:00
parent 7b5a0fdbe0
commit fe348acb49
2 changed files with 8 additions and 6 deletions

View file

@ -477,12 +477,14 @@ class Contact extends BaseObject
"SELECT COUNT(*) AS `total`
FROM `contact`
WHERE `uid` = %d
AND `self` = 0
AND NOT `self`
AND NOT `blocked`
AND NOT `pending`
AND `id` NOT IN (
SELECT DISTINCT(`contact-id`)
FROM `group_member`
WHERE `uid` = %d
) ", intval($uid), intval($uid)
)", intval($uid), intval($uid)
);
return $r;
@ -492,13 +494,13 @@ class Contact extends BaseObject
"SELECT *
FROM `contact`
WHERE `uid` = %d
AND `self` = 0
AND NOT `self`
AND NOT `blocked`
AND NOT `pending`
AND `id` NOT IN (
SELECT DISTINCT(`contact-id`)
FROM `group_member` WHERE `uid` = %d
)
AND `blocked` = 0
AND `pending` = 0
LIMIT %d, %d", intval($uid), intval($uid), intval($start), intval($count)
);
return $r;