summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2021-03-26 13:37:43 +0100
committerGravatar GitHub <noreply@github.com> 2021-03-26 13:37:43 +0100
commit49f920e19dff22e8026707d98cf93b556a2703a9 (patch)
treee2d1ed5f926e0a7c3a7823b16953ec56a26dfeb3
parent7e38bb0b57dfb507ca03a47f798dddfe3cb6017b (diff)
Fix filter double encoding (#3563)
#fix https://github.com/FreshRSS/FreshRSS/issues/3562 The content is already HTML-safe
-rw-r--r--app/views/helpers/feed/update.phtml2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/helpers/feed/update.phtml b/app/views/helpers/feed/update.phtml
index beb64e5a1..c0d095edb 100644
--- a/app/views/helpers/feed/update.phtml
+++ b/app/views/helpers/feed/update.phtml
@@ -427,7 +427,7 @@
<div class="group-controls">
<textarea name="filteractions_read" id="filteractions_read"><?php
foreach ($this->feed->filtersAction('read') as $filterRead) {
- echo htmlspecialchars($filterRead->getRawInput(), ENT_NOQUOTES, 'UTF-8'), PHP_EOL;
+ echo $filterRead->getRawInput(), PHP_EOL;
}
?></textarea>
<p class="help"><?= _i('help') ?> <?= _t('sub.feed.filteractions.help') ?></p>