From: Michael Vogel Date: Thu, 8 Jan 2015 10:01:55 +0000 (+0100) Subject: Only suggest contacts with networks. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=ab3cad89aefaf54bfd942eea62c071760d23dc19;p=friendica.git Only suggest contacts with networks. --- diff --git a/include/socgraph.php b/include/socgraph.php index 7e2bb7242b..0a85037901 100644 --- a/include/socgraph.php +++ b/include/socgraph.php @@ -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