From 54cbb215109303681447f900f2029734cc611fc9 Mon Sep 17 00:00:00 2001 From: Guillaume Turri <guillaume.turri@gmail.com> Date: Sun, 21 Nov 2010 12:25:23 +0100 Subject: [PATCH] Fixed a call to replace_invalid_with_pct_encoding (fixed upstream after SimplePie1.2) to continue to display correctly feeds with = --- inc/SimplePie.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- GitLab