mirror of
https://github.com/friendica/friendica
synced 2024-11-10 05:42:54 +00:00
Only suggest contacts with networks.
This commit is contained in:
parent
8f1cfac20a
commit
ab3cad89ae
1 changed files with 3 additions and 2 deletions
|
@ -316,7 +316,7 @@ function suggestion_query($uid, $start = 0, $limit = 80) {
|
|||
if(! $uid)
|
||||
return array();
|
||||
|
||||
$network = array("", NETWORK_DFRN);
|
||||
$network = array(NETWORK_DFRN);
|
||||
|
||||
if (get_config('system','diaspora_enabled'))
|
||||
$network[] = NETWORK_DIASPORA;
|
||||
|
@ -325,7 +325,8 @@ function suggestion_query($uid, $start = 0, $limit = 80) {
|
|||
$network[] = NETWORK_OSTATUS;
|
||||
|
||||
$sql_network = implode("', '", $network);
|
||||
$sql_network = substr($sql_network, 2)."', ''";
|
||||
//$sql_network = "'".$sql_network."', ''";
|
||||
$sql_network = "'".$sql_network."'";
|
||||
|
||||
$r = q("SELECT count(glink.gcid) as `total`, gcontact.* from gcontact
|
||||
INNER JOIN glink on glink.gcid = gcontact.id
|
||||
|
|
Loading…
Reference in a new issue