mirror of
https://github.com/friendica/friendica
synced 2024-11-10 02:22:55 +00:00
query to find un-grouped contacts
This commit is contained in:
parent
60871555f5
commit
73487989c0
1 changed files with 12 additions and 1 deletions
|
@ -173,4 +173,15 @@ function random_profile() {
|
|||
if(count($r))
|
||||
return dirname($r[0]['url']);
|
||||
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