summaryrefslogtreecommitdiff
path: root/it_url.class
diff options
context:
space:
mode:
authorDavid Flatz2018-06-18 15:18:16 +0200
committerDavid Flatz2018-06-18 15:19:48 +0200
commit3c94c414df60719fdcf8953531cc2eb7d417ed77 (patch)
tree37cf5490b385b400a20253f3f1286e6f75a5aa9e /it_url.class
parent6b0c87e5fad800ce625ff9ee47e27a2affd965b8 (diff)
downloaditools-3c94c414df60719fdcf8953531cc2eb7d417ed77.tar.gz
itools-3c94c414df60719fdcf8953531cc2eb7d417ed77.tar.bz2
itools-3c94c414df60719fdcf8953531cc2eb7d417ed77.zip
urlencode keys of nested structures; this fixes illegal characters in urls
Diffstat (limited to 'it_url.class')
-rw-r--r--it_url.class2
1 files changed, 1 insertions, 1 deletions
diff --git a/it_url.class b/it_url.class
index 30a1e41..8a78075 100644
--- a/it_url.class
+++ b/it_url.class
@@ -721,7 +721,7 @@ static function _params($params, $keys = null, $finalize = true)
foreach (it_url::_params($params[$key], null, false) as $value)
{
if (strlen($value))
- $result[] = it::replace(array('^([^=\[]*)' => $key . '[$1]'), $value);
+ $result[] = it::replace(array('^([^=\[]*)' => urlencode($key) . '[$1]'), $value);
}
}
else if (strlen($params[$key]))