From: Michael Date: Sun, 26 Aug 2018 08:24:45 +0000 (+0000) Subject: Issue 5670: Jump to the unassigned contacts as a starting point for group edit X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=44066775768b4b20d439f399ff7de0e816011360;p=friendica.git Issue 5670: Jump to the unassigned contacts as a starting point for group edit --- diff --git a/mod/group.php b/mod/group.php index 88b9830626..8f65eb643d 100644 --- a/mod/group.php +++ b/mod/group.php @@ -84,12 +84,12 @@ function group_content(App $a) { return; } - // Switch to text mode interface if we have more than 'n' contacts or group members - + // With no group number provided we jump to the unassigned contacts as a starting point if ($a->argc == 1) { - goaway(System::baseUrl() . '/contacts'); + goaway('group/none'); } + // Switch to text mode interface if we have more than 'n' contacts or group members $switchtotext = PConfig::get(local_user(), 'system', 'groupedit_image_limit'); if (is_null($switchtotext)) { $switchtotext = Config::get('system', 'groupedit_image_limit', 400);