]> git.mxchange.org Git - friendica.git/commitdiff
Redirect empty group to /contacts.
authorAndreas Neustifter <andreas.neustifter@gmail.com>
Sun, 8 Jul 2018 19:20:18 +0000 (21:20 +0200)
committerAndreas Neustifter <andreas.neustifter@gmail.com>
Mon, 9 Jul 2018 10:42:32 +0000 (12:42 +0200)
The empty /group page is not really doing anything, redirect to /contacts.

mod/group.php

index 726616a90f0e5807f2c3f3998ff595e61e33d2fd..331b69487449c324f75941521748825bb96c0283 100644 (file)
@@ -85,6 +85,10 @@ function group_content(App $a) {
        }
 
        // Switch to text mode interface if we have more than 'n' contacts or group members
+       
+       if ($a->argc == 1) {
+               goaway(System::baseUrl() . '/contacts');
+       }
 
        $switchtotext = PConfig::get(local_user(), 'system', 'groupedit_image_limit');
        if (is_null($switchtotext)) {