diff options
author | Guillaume Turri <guillaume.turri@gmail.com> | 2010-11-21 12:25:23 +0100 |
---|---|---|
committer | Guillaume Turri <guillaume.turri@gmail.com> | 2010-11-21 12:25:23 +0100 |
commit | 54cbb215109303681447f900f2029734cc611fc9 (patch) | |
tree | 1151b81367dc19494630197bb2ac7fcb3d5f1a29 /inc | |
parent | 91d55b797acf64322fa396dbfea34a78ea6b970f (diff) | |
download | rpg-54cbb215109303681447f900f2029734cc611fc9.tar.gz rpg-54cbb215109303681447f900f2029734cc611fc9.tar.bz2 |
Fixed a call to replace_invalid_with_pct_encoding (fixed upstream after SimplePie1.2) to continue to display correctly feeds with =
Diffstat (limited to 'inc')
-rw-r--r-- | inc/SimplePie.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/SimplePie.php b/inc/SimplePie.php index 1bbc2c0ec..d35443165 100644 --- a/inc/SimplePie.php +++ b/inc/SimplePie.php @@ -12151,7 +12151,7 @@ class SimplePie_IRI } else { - $this->query = $this->replace_invalid_with_pct_encoding($query, 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-._~!$\'()*+,;:@/?'); + $this->query = $this->replace_invalid_with_pct_encoding($query, 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-._~!$\'()*+,;:@/?&='); } $this->valid[__FUNCTION__] = true; return true; |