mirror of
https://git.sekbaer.de/Friendica/friendica.git
synced 2025-06-17 04:15:15 +02:00
Replace build_querystring() by http_build_query() introduced in PHP 5
This commit is contained in:
parent
0fadc7730c
commit
cd05d15b04
2 changed files with 1 additions and 34 deletions
|
@ -140,7 +140,7 @@ function network_init(App $a)
|
|||
|
||||
if ($remember_tab) {
|
||||
$net_args = array_merge($query_array, $net_args);
|
||||
$net_queries = build_querystring($net_args);
|
||||
$net_queries = http_build_query($net_args);
|
||||
|
||||
$redir_url = ($net_queries ? $net_baseurl . '?' . $net_queries : $net_baseurl);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue