query to find un-grouped contacts
This commit is contained in:
parent
60871555f5
commit
73487989c0
|
@ -173,4 +173,15 @@ function random_profile() {
|
||||||
if(count($r))
|
if(count($r))
|
||||||
return dirname($r[0]['url']);
|
return dirname($r[0]['url']);
|
||||||
return '';
|
return '';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
function contacts_not_grouped($uid) {
|
||||||
|
$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) ",
|
||||||
|
intval($uid),
|
||||||
|
intval($uid)
|
||||||
|
);
|
||||||
|
|
||||||
|
return $r;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue