]> git.mxchange.org Git - friendica.git/commitdiff
Merge branch 'develop' into bug/6211-fix-contact-nets-all
authorHypolite Petovan <hypolite@mrpetovan.com>
Sun, 2 Dec 2018 15:24:50 +0000 (10:24 -0500)
committerGitHub <noreply@github.com>
Sun, 2 Dec 2018 15:24:50 +0000 (10:24 -0500)
1  2 
mod/network.php
src/Content/Nav.php
src/Module/Contact.php

diff --cc mod/network.php
index e4e1dd3c53f19f511249246153118afcd2f27e38,52daa2eefe6b842689baf26864c4426fd0530067..46861e39434a6058c2e95c14055a0d381b161822
@@@ -63,9 -63,9 +63,9 @@@ function network_init(App $a
        $group_id = (($a->argc > 1 && is_numeric($a->argv[1])) ? intval($a->argv[1]) : 0);
  
        $cid = 0;
-       if (x($_GET, 'cid') && intval($_GET['cid']) != 0) {
+       if (!empty($_GET['cid'])) {
                $cid = $_GET['cid'];
 -              $_GET['nets'] = 'all';
 +              $_GET['nets'] = '';
                $group_id = 0;
        }
  
                }
        }
  
-       if (!x($a->page, 'aside')) {
 -      // If nets is set to all, unset it
 -      if (!empty($_GET['nets']) && $_GET['nets'] === 'all') {
 -              unset($_GET['nets']);
 -      }
 -
+       if (empty($a->page['aside'])) {
                $a->page['aside'] = '';
        }
  
Simple merge
index 12575064b933ab0abb855aa5f6a5dffdd35c4830,3cfe70540005927f319da65e478261fa8c544ef1..d12f003c2e2a24e05e235022fc0754a758d57c63
@@@ -40,8 -40,11 +40,8 @@@ class Contact extends BaseModul
                }
  
                $nets = defaults($_GET, 'nets', '');
 -              if ($nets == 'all') {
 -                      $nets = '';
 -              }
  
-               if (!x($a->page, 'aside')) {
+               if (empty($a->page['aside'])) {
                        $a->page['aside'] = '';
                }