]> git.mxchange.org Git - friendica.git/commitdiff
Improved code
authorMichael <heluecht@pirati.ca>
Mon, 13 Jan 2020 17:10:11 +0000 (17:10 +0000)
committerMichael <heluecht@pirati.ca>
Mon, 13 Jan 2020 17:10:11 +0000 (17:10 +0000)
mod/network.php

index e71bbe910e6743362d9818d8edd7768386bfa31e..acf6c6271634f7612eebbb5530de10c3c14e5230 100644 (file)
@@ -940,11 +940,10 @@ function network_tabs(App $a)
        if (!empty($_GET['cid'])) {
                $parameters['cid'] = $_GET['cid'];
        }
-       $query = '?' . http_build_query($parameters);
 
        $tabs[] = [
                'label' => L10n::t('Personal'),
-               'url'   => str_replace('/new', '', $cmd) . $query,
+               'url'   => str_replace('/new', '', $cmd) . '?' . http_build_query($parameters),
                'sel'   => $conv_active,
                'title' => L10n::t('Posts that mention or involve you'),
                'id'    => 'personal-tab',
@@ -973,11 +972,10 @@ function network_tabs(App $a)
                if (!empty($_GET['cid'])) {
                        $parameters['cid'] = $_GET['cid'];
                }
-               $query = '?' . http_build_query($parameters);
 
                $tabs[] = [
                        'label' => L10n::t('Shared Links'),
-                       'url'   => str_replace('/new', '', $cmd) . $query,
+                       'url'   => str_replace('/new', '', $cmd) . '?' . http_build_query($parameters),
                        'sel'   => $bookmarked_active,
                        'title' => L10n::t('Interesting Links'),
                        'id'    => 'shared-links-tab',
@@ -989,11 +987,10 @@ function network_tabs(App $a)
        if (!empty($_GET['cid'])) {
                $parameters['cid'] = $_GET['cid'];
        }
-       $query = '?' . http_build_query($parameters);
 
        $tabs[] = [
                'label' => L10n::t('Starred'),
-               'url'   => str_replace('/new', '', $cmd) . $query,
+               'url'   => str_replace('/new', '', $cmd) . '?' . http_build_query($parameters),
                'sel'   => $starred_active,
                'title' => L10n::t('Favourite Posts'),
                'id'    => 'starred-posts-tab',