summaryrefslogtreecommitdiff
path: root/app/Controllers/configureController.php
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2024-09-15 12:00:46 +0200
committerGravatar GitHub <noreply@github.com> 2024-09-15 12:00:46 +0200
commit469a42d9c3dedaf2817ba6ffec2f0945f83e63c0 (patch)
treec2275d5044f8295064e2b6f8b219b537eebe73e0 /app/Controllers/configureController.php
parent34d933d43c25f141da900c6be9531419859a4652 (diff)
Rename param specialchars to plaintext (#6809)
https://github.com/FreshRSS/FreshRSS/pull/6800#discussion_r1756435762
Diffstat (limited to 'app/Controllers/configureController.php')
-rw-r--r--app/Controllers/configureController.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Controllers/configureController.php b/app/Controllers/configureController.php
index 612129b8a..cc31430b0 100644
--- a/app/Controllers/configureController.php
+++ b/app/Controllers/configureController.php
@@ -202,7 +202,7 @@ class FreshRSS_configure_Controller extends FreshRSS_ActionController {
$this->view->list_keys = SHORTCUT_KEYS;
if (Minz_Request::isPost()) {
- $shortcuts = Minz_Request::paramArray('shortcuts', specialchars: true);
+ $shortcuts = Minz_Request::paramArray('shortcuts', plaintext: true);
if (Minz_Request::paramBoolean('load_default_shortcuts')) {
$default = Minz_Configuration::load(FRESHRSS_PATH . '/config-user.default.php');
$shortcuts = $default['shortcuts'];