stray debug statements, forgot to filter pending contacts
This commit is contained in:
parent
3c4e6d3461
commit
df1904b204
|
@ -177,25 +177,25 @@ function random_profile() {
|
||||||
|
|
||||||
|
|
||||||
function contacts_not_grouped($uid,$start = 0,$count = 0) {
|
function contacts_not_grouped($uid,$start = 0,$count = 0) {
|
||||||
dbg(1);
|
|
||||||
if(! $count) {
|
if(! $count) {
|
||||||
$r = q("select count(*) as total from contact where uid = %d and self = 0 and id not in (select distinct(`contact-id`) from group_member where uid = %d) ",
|
$r = q("select count(*) as total from contact where uid = %d and self = 0 and id not in (select distinct(`contact-id`) from group_member where uid = %d) ",
|
||||||
intval($uid),
|
intval($uid),
|
||||||
intval($uid)
|
intval($uid)
|
||||||
);
|
);
|
||||||
dbg(0);
|
|
||||||
return $r;
|
return $r;
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
dbg(1);
|
|
||||||
$r = q("select * from contact where uid = %d and self = 0 and id not in (select distinct(`contact-id`) from group_member where uid = %d) limit %d, %d",
|
$r = q("select * from contact where uid = %d and self = 0 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($uid),
|
intval($uid),
|
||||||
intval($start),
|
intval($start),
|
||||||
intval($count)
|
intval($count)
|
||||||
);
|
);
|
||||||
dbg(0);
|
|
||||||
return $r;
|
return $r;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue