mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-07-16 08:54:42 +02:00
fix: only escape iframe,script and link for html output (#3882)
This commit is contained in:
parent
1fecc4cfc1
commit
2e5d2a88f3
3 changed files with 3 additions and 3 deletions
|
@ -179,7 +179,7 @@ class AtomFormat extends FormatAbstract
|
|||
|
||||
$content = $document->createElement('content');
|
||||
$content->setAttribute('type', 'html');
|
||||
$content->appendChild($document->createTextNode(break_annoying_html_tags($entryContent)));
|
||||
$content->appendChild($document->createTextNode($entryContent));
|
||||
$entry->appendChild($content);
|
||||
|
||||
foreach ($item->getEnclosures() as $enclosure) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue