mirror of
https://github.com/friendica/friendica
synced 2024-12-23 16:00:16 +00:00
commit
1d512f3ba2
1 changed files with 19 additions and 14 deletions
|
@ -16,12 +16,13 @@ function network_init(&$a) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// convert query string to array. remove friendica args
|
// convert query string to array. remove friendica args
|
||||||
$query_array = array();
|
$query_array = array();
|
||||||
$query_string = str_replace($a->cmd."?", "", $a->query_string);
|
$query_string = str_replace($a->cmd."?", "", $a->query_string);
|
||||||
parse_str($query_string, $query_array);
|
parse_str($query_string, $query_array);
|
||||||
array_shift($query_array);
|
array_shift($query_array);
|
||||||
|
|
||||||
|
|
||||||
// fetch last used network view and redirect if needed
|
// fetch last used network view and redirect if needed
|
||||||
if(! $is_a_date_query) {
|
if(! $is_a_date_query) {
|
||||||
$sel_tabs = network_query_get_sel_tab($a);
|
$sel_tabs = network_query_get_sel_tab($a);
|
||||||
|
@ -44,7 +45,7 @@ function network_init(&$a) {
|
||||||
else if($sel_groups !== false) {
|
else if($sel_groups !== false) {
|
||||||
$net_baseurl .= '/' . $sel_groups;
|
$net_baseurl .= '/' . $sel_groups;
|
||||||
}
|
}
|
||||||
|
|
||||||
if($remember_tab) {
|
if($remember_tab) {
|
||||||
// redirect if current selected tab is '/network' and
|
// redirect if current selected tab is '/network' and
|
||||||
// last selected tab is _not_ '/network?f=&order=comment'.
|
// last selected tab is _not_ '/network?f=&order=comment'.
|
||||||
|
@ -73,11 +74,11 @@ function network_init(&$a) {
|
||||||
|
|
||||||
$net_baseurl .= $tab_baseurls[$k];
|
$net_baseurl .= $tab_baseurls[$k];
|
||||||
|
|
||||||
// parse out tab queries
|
// parse out tab queries
|
||||||
$dest_qa = array();
|
$dest_qa = array();
|
||||||
$dest_qs = $tab_args[$k];
|
$dest_qs = $tab_args[$k];
|
||||||
parse_str( $dest_qs, $dest_qa);
|
parse_str( $dest_qs, $dest_qa);
|
||||||
$net_args = array_merge($net_args, $dest_qa);
|
$net_args = array_merge($net_args, $dest_qa);
|
||||||
}
|
}
|
||||||
else if($sel_tabs[4] === 'active') {
|
else if($sel_tabs[4] === 'active') {
|
||||||
// The '/new' tab is selected
|
// The '/new' tab is selected
|
||||||
|
@ -87,16 +88,20 @@ function network_init(&$a) {
|
||||||
if($remember_net) {
|
if($remember_net) {
|
||||||
$net_args['nets'] = $last_sel_nets;
|
$net_args['nets'] = $last_sel_nets;
|
||||||
}
|
}
|
||||||
|
else if($sel_nets!==false) {
|
||||||
|
$net_args['nets'] = $sel_nets;
|
||||||
|
}
|
||||||
|
|
||||||
if($remember_tab || $remember_net || $remember_group) {
|
if($remember_tab || $remember_net || $remember_group) {
|
||||||
$net_args = array_merge($query_array, $net_args);
|
$net_args = array_merge($query_array, $net_args);
|
||||||
$net_queries = build_querystring($net_args);
|
$net_queries = build_querystring($net_args);
|
||||||
|
|
||||||
$redir_url = ($net_queries ? $net_baseurl."?".$net_queries : $net_baseurl);
|
$redir_url = ($net_queries ? $net_baseurl."?".$net_queries : $net_baseurl);
|
||||||
|
|
||||||
goaway($a->get_baseurl() . $redir_url);
|
goaway($a->get_baseurl() . $redir_url);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if(x($_GET['nets']) && $_GET['nets'] === 'all')
|
if(x($_GET['nets']) && $_GET['nets'] === 'all')
|
||||||
unset($_GET['nets']);
|
unset($_GET['nets']);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue