From: Michael Vogel Date: Sun, 15 Jun 2014 16:51:46 +0000 (+0200) Subject: The network widget is now ordered by network name X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=dd685a4afcf1ef6171528a4e418d1b308b81c0c6;p=friendica.git The network widget is now ordered by network name --- diff --git a/include/contact_widgets.php b/include/contact_widgets.php index 9401adccad..6d9b097d69 100644 --- a/include/contact_widgets.php +++ b/include/contact_widgets.php @@ -49,8 +49,8 @@ function networks_widget($baseurl,$selected = '') { if(! feature_enabled(local_user(),'networks')) return ''; - - $r = q("select distinct(network) from contact where uid = %d and self = 0", + + $r = q("SELECT DISTINCT(`network`) FROM `contact` WHERE `uid` = %d AND `self` = 0 ORDER BY `network`", intval(local_user()) );