aboutsummaryrefslogtreecommitdiff
path: root/app/Controllers
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2025-12-29 15:29:46 +0100
committerGravatar GitHub <noreply@github.com> 2025-12-29 15:29:46 +0100
commit579f945af7e22315e6aea7b1000ce146f078db10 (patch)
treed4e7a013ffa3597561c142c8b730db48ad1db444 /app/Controllers
parent7c0370b4eacdd62c06c7324a39f092361e84a2bc (diff)
Fix encoding of filter actions for labels (#8368)
fix https://github.com/FreshRSS/FreshRSS/issues/8367 Forgotten from https://github.com/FreshRSS/FreshRSS/pull/8324
Diffstat (limited to 'app/Controllers')
-rw-r--r--app/Controllers/tagController.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Controllers/tagController.php b/app/Controllers/tagController.php
index d5216b746..58018094c 100644
--- a/app/Controllers/tagController.php
+++ b/app/Controllers/tagController.php
@@ -118,7 +118,7 @@ class FreshRSS_tag_Controller extends FreshRSS_ActionController {
}
if ($ok) {
- $tag->_filtersAction('label', Minz_Request::paramTextToArray('filteractions_label')); // Keep as HTML
+ $tag->_filtersAction('label', Minz_Request::paramTextToArray('filteractions_label', plaintext: true));
$ok = $tagDAO->updateTagAttributes($tag->id(), $tag->attributes()) !== false;
}