diff options
| author | 2024-07-29 14:48:17 +0200 | |
|---|---|---|
| committer | 2024-07-29 14:48:17 +0200 | |
| commit | 5c8369ce38c67fba7dd39d68626534c7e61eb24c (patch) | |
| tree | 546f6ce7325ae557cb7e67b09224d49ce2caf1f1 /app/Controllers/entryController.php | |
| parent | 47a3e15edc2a2e9d76a3374a2f5ed7197b2aedea (diff) | |
Strong type array parameter helper (#6661)
Also useful for extensions (including one I am writing)
Diffstat (limited to 'app/Controllers/entryController.php')
| -rw-r--r-- | app/Controllers/entryController.php | 2 |
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; |
