From: Michael Vogel Date: Fri, 20 Feb 2015 22:33:21 +0000 (+0100) Subject: Bugfix: If "all" is selected then no contacts were shown. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=1dc961713d0139971207c8556cb18c5e4ce3f013;p=friendica.git Bugfix: If "all" is selected then no contacts were shown. --- diff --git a/mod/contacts.php b/mod/contacts.php index f7379d0c8a..515d9d5dcb 100644 --- a/mod/contacts.php +++ b/mod/contacts.php @@ -44,6 +44,9 @@ function contacts_init(&$a) { $follow_widget = follow_widget(); } + if ($_GET['nets'] == "all") + $_GET['nets'] = ""; + $groups_widget .= group_side('contacts','group',false,0,$contact_id); $findpeople_widget .= findpeople_widget(); $networks_widget .= networks_widget('contacts',$_GET['nets']);