]> git.mxchange.org Git - friendica.git/commitdiff
iframes were getting stripped at the rss/atom parser level. We can preserve these...
authorfriendica <info@friendica.com>
Wed, 20 Jun 2012 12:04:51 +0000 (05:04 -0700)
committerfriendica <info@friendica.com>
Wed, 20 Jun 2012 12:04:51 +0000 (05:04 -0700)
include/items.php
library/simplepie/simplepie.inc

index 73812978a92c7ca65caa6f04a8e00b2c380d112d..d679efd9038982926a15767b1a274103fa7d7286 100755 (executable)
@@ -446,6 +446,8 @@ function get_atom_elements($feed,$item) {
                $res['body'] = $purifier->purify($res['body']);
 
                $res['body'] = @html2bbcode($res['body']);
+
+
        }
        elseif(! $have_real_body) {
 
index 8a2739f525d9512f21eb9049bf409aecfa9f0edc..96ad06678e9ed40a151c7f25800f5a0b08d62be2 100644 (file)
@@ -709,7 +709,7 @@ class SimplePie
         * @see SimplePie::strip_htmltags()
         * @access private
         */
-       var $strip_htmltags = array('base', 'blink', 'body', 'doctype', 'embed', 'font', 'form', 'frame', 'frameset', 'html', 'iframe', 'input', 'marquee', 'meta', 'noscript', 'object', 'param', 'script', 'style');
+       var $strip_htmltags = array('base', 'blink', 'body', 'doctype', 'embed', 'font', 'form', 'frame', 'frameset', 'html', 'input', 'marquee', 'meta', 'noscript', 'object', 'param', 'script', 'style');
 
        /**
         * The SimplePie class contains feed level data and options
@@ -14803,7 +14803,7 @@ class SimplePie_Sanitize
        // Options
        var $remove_div = true;
        var $image_handler = '';
-       var $strip_htmltags = array('base', 'blink', 'body', 'doctype', 'embed', 'font', 'form', 'frame', 'frameset', 'html', 'iframe', 'input', 'marquee', 'meta', 'noscript', 'object', 'param', 'script', 'style');
+       var $strip_htmltags = array('base', 'blink', 'body', 'doctype', 'embed', 'font', 'form', 'frame', 'frameset', 'html', 'input', 'marquee', 'meta', 'noscript', 'object', 'param', 'script', 'style');
        var $encode_instead_of_strip = false;
        var $strip_attributes = array('bgsound', 'class', 'expr', 'id', 'style', 'onclick', 'onerror', 'onfinish', 'onmouseover', 'onmouseout', 'onfocus', 'onblur', 'lowsrc', 'dynsrc');
        var $strip_comments = false;
@@ -14892,7 +14892,7 @@ class SimplePie_Sanitize
                }
        }
 
-       function strip_htmltags($tags = array('base', 'blink', 'body', 'doctype', 'embed', 'font', 'form', 'frame', 'frameset', 'html', 'iframe', 'input', 'marquee', 'meta', 'noscript', 'object', 'param', 'script', 'style'))
+       function strip_htmltags($tags = array('base', 'blink', 'body', 'doctype', 'embed', 'font', 'form', 'frame', 'frameset', 'html', 'input', 'marquee', 'meta', 'noscript', 'object', 'param', 'script', 'style'))
        {
                if ($tags)
                {