summaryrefslogtreecommitdiffstats
path: root/vendor/pear/net_url2/Net/URL2.php
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2015-01-27 09:29:09 +0100
committerBernhard Posselt <dev@bernhard-posselt.com>2015-01-27 09:29:09 +0100
commit73f65c8fbadbdd2098448e77b6d3f0464ad8613e (patch)
treef22ba63a222fb4f7d05427b661f3c008170047fd /vendor/pear/net_url2/Net/URL2.php
parentbe37aed9f5d923fe16e264c6ffc97db08503b791 (diff)
update picofeed
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");