diff options
| author | 2021-03-26 13:37:43 +0100 | |
|---|---|---|
| committer | 2021-03-26 13:37:43 +0100 | |
| commit | 49f920e19dff22e8026707d98cf93b556a2703a9 (patch) | |
| tree | e2d1ed5f926e0a7c3a7823b16953ec56a26dfeb3 | |
| parent | 7e38bb0b57dfb507ca03a47f798dddfe3cb6017b (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.phtml | 2 |
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> |
