diff options
author | friendica <info@friendica.com> | 2012-04-01 15:43:57 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-04-01 15:43:57 -0700 |
commit | 00bbb9ad362539cc945254eb66af33e2e470440b (patch) | |
tree | 2c9d21f10924faa6b664722dea85cecfcd10cd15 /include | |
parent | 9b4bef8ac49131f8138d360805645e2da44913ae (diff) | |
download | volse-hubzilla-00bbb9ad362539cc945254eb66af33e2e470440b.tar.gz volse-hubzilla-00bbb9ad362539cc945254eb66af33e2e470440b.tar.bz2 volse-hubzilla-00bbb9ad362539cc945254eb66af33e2e470440b.zip |
slight improvement in handling of plaintext feeds
Diffstat (limited to 'include')
-rwxr-xr-x | include/items.php | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/include/items.php b/include/items.php index 8f8b3ccd0..ee6960534 100755 --- a/include/items.php +++ b/include/items.php @@ -435,8 +435,15 @@ function get_atom_elements($feed,$item) { $res['body'] = @html2bbcode($res['body']); } -// else -// $res['body'] = escape_tags($res['body']); + elseif(! $have_real_body) { + + // it's not one of our messages and it has no tags + // so it's probably just text. We'll escape it just to be safe. + + $res['body'] = escape_tags($res['body']); + } + + // this tag is obsolete but we keep it for really old sites $allow = $item->get_item_tags(NAMESPACE_DFRN,'comment-allow'); if($allow && $allow[0]['data'] == 1) |