diff options
author | friendica <info@friendica.com> | 2012-06-20 05:04:51 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-06-20 05:04:51 -0700 |
commit | f0db196288e60c0165810edea009711dcbbdb218 (patch) | |
tree | d0544ae448742be0cdc23e2068c2c5e72763b37c /include/items.php | |
parent | b3bf48782fc9cc768645b3e08543799ccc1c743b (diff) | |
download | volse-hubzilla-f0db196288e60c0165810edea009711dcbbdb218.tar.gz volse-hubzilla-f0db196288e60c0165810edea009711dcbbdb218.tar.bz2 volse-hubzilla-f0db196288e60c0165810edea009711dcbbdb218.zip |
iframes were getting stripped at the rss/atom parser level. We can preserve these because we will strip them in the purifier after checking for supported video sources
Diffstat (limited to 'include/items.php')
-rwxr-xr-x | include/items.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/items.php b/include/items.php index 73812978a..d679efd90 100755 --- a/include/items.php +++ b/include/items.php @@ -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) { |