diff options
author | friendica <info@friendica.com> | 2012-04-12 23:06:41 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-04-12 23:06:41 -0700 |
commit | 3c4e6d34610ae4913d1d9ea090499c5d328a62e8 (patch) | |
tree | ffba2ebe12a5e47c96e9a3a4b2c73bd50c43cd55 /include/Contact.php | |
parent | af68d033e330e33571f95763b58833273d22d3a7 (diff) | |
download | volse-hubzilla-3c4e6d34610ae4913d1d9ea090499c5d328a62e8.tar.gz volse-hubzilla-3c4e6d34610ae4913d1d9ea090499c5d328a62e8.tar.bz2 volse-hubzilla-3c4e6d34610ae4913d1d9ea090499c5d328a62e8.zip |
bug #369 - show contacts who are not in any groups
Diffstat (limited to 'include/Contact.php')
-rw-r--r-- | include/Contact.php | 22 |
1 files changed, 18 insertions, 4 deletions
diff --git a/include/Contact.php b/include/Contact.php index 8d893cf70..657977801 100644 --- a/include/Contact.php +++ b/include/Contact.php @@ -176,12 +176,26 @@ function random_profile() { } -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) ", +function contacts_not_grouped($uid,$start = 0,$count = 0) { +dbg(1); + 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) ", + intval($uid), + intval($uid) + ); +dbg(0); + 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", + intval($uid), intval($uid), - intval($uid) + intval($start), + intval($count) ); - +dbg(0); return $r; } |