summaryrefslogtreecommitdiffstats
path: root/vendor/pear/net_url2/Net/URL2.php
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/pear/net_url2/Net/URL2.php')
-rwxr-xr-xvendor/pear/net_url2/Net/URL2.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/vendor/pear/net_url2/Net/URL2.php b/vendor/pear/net_url2/Net/URL2.php
index 6b323fcbf..dba48ce04 100755
--- a/vendor/pear/net_url2/Net/URL2.php
+++ b/vendor/pear/net_url2/Net/URL2.php
@@ -801,7 +801,8 @@ class Net_URL2
// Normalize case of %XX percentage-encodings (RFC 3986, section 6.2.2.1)
// Normalize percentage-encoded unreserved characters (section 6.2.2.2)
- $fields = array(&$this->_userinfo, &$this->_host, &$this->_path);
+ $fields = array(&$this->_userinfo, &$this->_host, &$this->_path,
+ &$this->_query, &$this->_fragment);
foreach ($fields as &$field) {
if ($field !== false) {
$field = $this->_normalize("$field");