summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuillaume Turri <guillaume.turri@gmail.com>2010-11-21 12:25:23 +0100
committerGuillaume Turri <guillaume.turri@gmail.com>2010-11-21 12:25:23 +0100
commit54cbb215109303681447f900f2029734cc611fc9 (patch)
tree1151b81367dc19494630197bb2ac7fcb3d5f1a29
parent91d55b797acf64322fa396dbfea34a78ea6b970f (diff)
downloadrpg-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 =
-rw-r--r--inc/SimplePie.php2
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;