aboutsummaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2024-07-29 14:48:17 +0200
committerGravatar GitHub <noreply@github.com> 2024-07-29 14:48:17 +0200
commit5c8369ce38c67fba7dd39d68626534c7e61eb24c (patch)
tree546f6ce7325ae557cb7e67b09224d49ce2caf1f1 /app
parent47a3e15edc2a2e9d76a3374a2f5ed7197b2aedea (diff)
Strong type array parameter helper (#6661)
Also useful for extensions (including one I am writing)
Diffstat (limited to 'app')
-rw-r--r--app/Controllers/entryController.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Controllers/entryController.php b/app/Controllers/entryController.php
index 9104cefc4..8cea74752 100644
--- a/app/Controllers/entryController.php
+++ b/app/Controllers/entryController.php
@@ -114,7 +114,7 @@ class FreshRSS_entry_Controller extends FreshRSS_ActionController {
}
} else {
/** @var array<numeric-string> $idArray */
- $idArray = Minz_Request::paramArray('id');
+ $idArray = Minz_Request::paramArrayString('id');
$idString = Minz_Request::paramString('id');
if (count($idArray) > 0) {
$ids = $idArray;