aboutsummaryrefslogtreecommitdiff
path: root/lib/SimplePie
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2015-03-21 15:13:08 +0100
committerGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2015-03-21 15:13:08 +0100
commit0e08b5ba56b2117e0f3d9bea6ae725295e8700d5 (patch)
treeb7b8ac65fc9810b541e3cbabcefd6297375c8a93 /lib/SimplePie
parentec611d7d543e27fe8c794cd98177d00cf636c58f (diff)
htmlspecialchars_decode for all SIMPLEPIE_CONSTRUCT_MAYBE_HTML
https://github.com/FreshRSS/FreshRSS/issues/754
Diffstat (limited to 'lib/SimplePie')
-rw-r--r--lib/SimplePie/SimplePie/Sanitize.php6
1 files changed, 1 insertions, 5 deletions
diff --git a/lib/SimplePie/SimplePie/Sanitize.php b/lib/SimplePie/SimplePie/Sanitize.php
index 3da7239be..e7c9f925f 100644
--- a/lib/SimplePie/SimplePie/Sanitize.php
+++ b/lib/SimplePie/SimplePie/Sanitize.php
@@ -249,11 +249,7 @@ class SimplePie_Sanitize
{
if ($type & SIMPLEPIE_CONSTRUCT_MAYBE_HTML)
{
- if (preg_match('/&amp;#(x[0-9a-fA-F]+|[0-9]+);/', $data)) //FreshRSS
- {
- $data = htmlspecialchars_decode($data, ENT_QUOTES); //FreshRSS
- //syslog(LOG_DEBUG, 'SimplePie sanitize MAYBE_HTML htmlspecialchars_decode: ' . $data); //FreshRSS
- }
+ $data = htmlspecialchars_decode($data, ENT_QUOTES); //FreshRSS
if (preg_match('/(&(#(x[0-9a-fA-F]+|[0-9]+)|[a-zA-Z0-9]+)|<\/[A-Za-z][^\x09\x0A\x0B\x0C\x0D\x20\x2F\x3E]*' . SIMPLEPIE_PCRE_HTML_ATTRIBUTE . '>)/', $data))
{
$type |= SIMPLEPIE_CONSTRUCT_HTML;