aboutsummaryrefslogtreecommitdiffstats
path: root/include/socgraph.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2012-05-02 00:44:37 -0700
committerfriendica <info@friendica.com>2012-05-02 00:44:37 -0700
commita42a475e100af70a9a7b95edc061f1a13e216dcf (patch)
tree398b30120a3d8f2836b2a175b954c7cb25812f1b /include/socgraph.php
parent1b1f56f55625f26d7bc2a5079d385d1c319e2d9a (diff)
downloadvolse-hubzilla-a42a475e100af70a9a7b95edc061f1a13e216dcf.tar.gz
volse-hubzilla-a42a475e100af70a9a7b95edc061f1a13e216dcf.tar.bz2
volse-hubzilla-a42a475e100af70a9a7b95edc061f1a13e216dcf.zip
shuffle results of remote_common_friends widget
Diffstat (limited to 'include/socgraph.php')
-rw-r--r--include/socgraph.php18
1 files changed, 14 insertions, 4 deletions
diff --git a/include/socgraph.php b/include/socgraph.php
index a08d58074..35d754cad 100644
--- a/include/socgraph.php
+++ b/include/socgraph.php
@@ -182,13 +182,18 @@ function count_common_friends($uid,$cid) {
}
-function common_friends($uid,$cid,$limit=9999) {
+function common_friends($uid,$cid,$limit=9999,$shuffle = false) {
+
+ if($shuffle)
+ $sql_extra = " order by rand() ";
+ else
+ $sql_extra = " order by `gcontact`.`name` asc ";
$r = q("SELECT `gcontact`.*
FROM `glink` left join `gcontact` on `glink`.`gcid` = `gcontact`.`id`
where `glink`.`cid` = %d and `glink`.`uid` = %d
and `gcontact`.`nurl` in (select nurl from contact where uid = %d and self = 0 and id != %d )
- order by `gcontact`.`name` asc limit 0, %d",
+ sql_extra limit 0, %d",
intval($cid),
intval($uid),
intval($uid),
@@ -217,13 +222,18 @@ function count_common_friends_zcid($uid,$zcid) {
}
-function common_friends_zcid($uid,$zcid,$limit = 6) {
+function common_friends_zcid($uid,$zcid,$limit = 9999,$shuffle) {
+
+ if($shuffle)
+ $sql_extra = " order by rand() ";
+ else
+ $sql_extra = " order by `gcontact`.`name` asc ";
$r = q("SELECT `gcontact`.*
FROM `glink` left join `gcontact` on `glink`.`gcid` = `gcontact`.`id`
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",
+ $sql_extra limit 0, %d",
intval($zcid),
intval($uid),
intval($limit)