forked from Lainports/freebsd-ports
of PHP. See also https://www.php.net/manual/en/function.implode.php Committed with minor changes. PR: 240931 Submitted by: lutz@donnerhacke.de
11 lines
365 B
PHP
11 lines
365 B
PHP
--- src/utils/utils.php.orig 2019-08-31 14:54:35 UTC
|
|
+++ src/utils/utils.php
|
|
@@ -1703,7 +1703,7 @@ function phutil_build_http_querystring_f
|
|
list($key, $value) = phutil_http_parameter_pair($key, $value);
|
|
$query[] = rawurlencode($key).'='.rawurlencode($value);
|
|
}
|
|
- $query = implode($query, '&');
|
|
+ $query = implode('&', $query);
|
|
|
|
return $query;
|
|
}
|