X-Git-Url: https://git.wh0rd.org/?a=blobdiff_plain;f=include%2Ffunctions2.php;h=0a4f4309ee2dacb8df786ebe6dfa6a21eb095cde;hb=42f78188d010458d140ab1305c056e9c9c755e92;hp=1c2ffb9369329532ad8c0571fd98e039f9f6f5f4;hpb=977cea1438dafcdc98756b070a1383e5887d64c1;p=tt-rss.git diff --git a/include/functions2.php b/include/functions2.php index 1c2ffb93..0a4f4309 100644 --- a/include/functions2.php +++ b/include/functions2.php @@ -1034,7 +1034,14 @@ $res = $doc->saveHTML(); - return $res; + /* strip everything outside of ... */ + + $res_frag = array(); + if (preg_match('/(.*)<\/body>/is', $res, $res_frag)) { + return $res_frag[1]; + } else { + return $res; + } } function strip_harmful_tags($doc, $allowed_elements, $disallowed_attributes) {