diff options
author | Christian Schneider | 2021-01-13 16:21:03 +0100 |
---|---|---|
committer | Christian Schneider | 2021-01-13 16:21:03 +0100 |
commit | 4f7f5e4b1fd1077ad134860b32203810ef24c0ce (patch) | |
tree | ad1f7ce97388ff1ac4b11e47960ddebe2ae1fa0f /it_url.class | |
parent | b1548c21528cc8158f09a3acaf6fb8ef51ae7e5f (diff) | |
download | itools-4f7f5e4b1fd1077ad134860b32203810ef24c0ce.tar.gz itools-4f7f5e4b1fd1077ad134860b32203810ef24c0ce.tar.bz2 itools-4f7f5e4b1fd1077ad134860b32203810ef24c0ce.zip |
Unified join to always use implode
Diffstat (limited to 'it_url.class')
-rw-r--r-- | it_url.class | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/it_url.class b/it_url.class index bddbdb8..f4dc05f 100644 --- a/it_url.class +++ b/it_url.class @@ -850,7 +850,7 @@ static function encode($str) */ static function params($params, $keys = null) { - return join("&", it_url::_params($params, $keys)); + return implode("&", it_url::_params($params, $keys)); } static function _params($params, $keys = null, $finalize = true) |