aboutsummaryrefslogtreecommitdiff
path: root/app/views/helpers/feed/update.phtml
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2024-12-10 14:57:25 +0100
committerGravatar GitHub <noreply@github.com> 2024-12-10 14:57:25 +0100
commitab9a4e292cab48c94e6bac818f3256f6e131c041 (patch)
tree51e3341929570aabc61b663d24bcd44b6ba821c2 /app/views/helpers/feed/update.phtml
parent052261bb8efbb910cefbf82fa54c64f54ba79854 (diff)
OPML export/import for cssFullContentConditions (#7082)
Follow-up of https://github.com/FreshRSS/FreshRSS/commit/33fd07f6f26310d4806077cc87bcdf9b8b940e35, which should have been a PR.
Diffstat (limited to 'app/views/helpers/feed/update.phtml')
-rw-r--r--app/views/helpers/feed/update.phtml6
1 files changed, 3 insertions, 3 deletions
diff --git a/app/views/helpers/feed/update.phtml b/app/views/helpers/feed/update.phtml
index c73987e50..6275d5486 100644
--- a/app/views/helpers/feed/update.phtml
+++ b/app/views/helpers/feed/update.phtml
@@ -662,11 +662,11 @@
</div>
<div class="form-group">
- <label class="group-name" for="path_entries_condition"><?= _t('sub.feed.path_entries_condition') ?></label>
+ <label class="group-name" for="path_entries_conditions"><?= _t('sub.feed.path_entries_conditions') ?></label>
<div class="group-controls">
- <textarea class="w100" id="path_entries_condition" name="path_entries_condition"
+ <textarea class="w100" id="path_entries_conditions" name="path_entries_conditions"
rows="3" cols="64" spellcheck="false" placeholder="<?= _t('gen.short.blank_to_disable') ?>"><?php
- foreach ($this->feed->attributeArray('path_entries_condition') ?? [] as $condition) {
+ foreach ($this->feed->attributeArray('path_entries_conditions') ?? [] as $condition) {
if (is_string($condition)) {
echo htmlspecialchars($condition, ENT_NOQUOTES, 'UTF-8'), PHP_EOL;
}