diff options
author | friendica <info@friendica.com> | 2012-05-01 20:33:19 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-05-01 20:33:19 -0700 |
commit | 594803afca25bf173cc42bb523a6931cc386777a (patch) | |
tree | 6804918c2ae778f7b5667794e4d9571c17450248 /include/socgraph.php | |
parent | 066d69b21c4d612b35a3e15ae1d5db6344935e53 (diff) | |
download | volse-hubzilla-594803afca25bf173cc42bb523a6931cc386777a.tar.gz volse-hubzilla-594803afca25bf173cc42bb523a6931cc386777a.tar.bz2 volse-hubzilla-594803afca25bf173cc42bb523a6931cc386777a.zip |
reduce the scope a bit
Diffstat (limited to 'include/socgraph.php')
-rw-r--r-- | include/socgraph.php | 24 |
1 files changed, 8 insertions, 16 deletions
diff --git a/include/socgraph.php b/include/socgraph.php index bd1fbded5..a3e20a641 100644 --- a/include/socgraph.php +++ b/include/socgraph.php @@ -200,18 +200,14 @@ function common_friends($uid,$cid) { } -function count_common_friends_remote($uid,$cid,$zid) { +function count_common_friends_zcid($uid,$zcid) { $r = q("SELECT count(*) as `total` FROM `glink` left join `gcontact` on `glink`.`gcid` = `gcontact`.`id` - where ((`glink`.cid != 0 and `glink`.`cid` = %d) or ( `glink`.`zcid` != 0 and `glink`.`zcid` = %d )) - and `glink`.`uid` = %d - and `gcontact`.`nurl` in (select nurl from contact where uid = %d and self = 0 and id != %d ) ", - intval($cid), - intval($zid), + where `glink`.`zcid` = %d + and `gcontact`.`nurl` in (select nurl from contact where uid = %d and self = 0 ) ", + intval($zcid), intval($uid), - intval($uid), - intval($cid) ); if(count($r)) @@ -220,19 +216,15 @@ function count_common_friends_remote($uid,$cid,$zid) { } -function common_friends_remote($uid,$cid,$zid,$limit = 6) { +function common_friends_zcid($uid,$zcid,$limit = 6) { $r = q("SELECT `gcontact`.* FROM `glink` left join `gcontact` on `glink`.`gcid` = `gcontact`.`id` - where ((`glink`.cid != 0 and `glink`.`cid` = %d) or ( `glink`.`zcid` != 0 and `glink`.`zcid` = %d )) - and `glink`.`uid` = %d - and `gcontact`.`nurl` in (select nurl from contact where uid = %d and self = 0 and id != %d ) + where `glink`.`zcid` = %d + and `gcontact`.`nurl` in (select nurl from contact where uid = %d and self = 0 ) order by `gcontact`.`name` asc limit 0, %d", - intval($cid), - intval($zid), + intval($zcid), intval($uid), - intval($uid), - intval($cid), intval($limit) ); |