aboutsummaryrefslogtreecommitdiff
path: root/app/Controllers/userController.php
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2024-03-12 08:55:29 +0100
committerGravatar GitHub <noreply@github.com> 2024-03-12 08:55:29 +0100
commit354a5e83888cebe89843b754d0936f3633323cef (patch)
tree32cf93e3114744331af02d97f4c6cd72761808d5 /app/Controllers/userController.php
parent3841103fa0bfb47c94a9395fd5e7601438b50326 (diff)
Fix empty token bug (#6185)
fix https://github.com/FreshRSS/FreshRSS/issues/6184
Diffstat (limited to 'app/Controllers/userController.php')
-rw-r--r--app/Controllers/userController.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Controllers/userController.php b/app/Controllers/userController.php
index fdf57b5f9..9bcf13d6f 100644
--- a/app/Controllers/userController.php
+++ b/app/Controllers/userController.php
@@ -126,7 +126,7 @@ class FreshRSS_user_Controller extends FreshRSS_ActionController {
$email,
$passwordPlain,
[
- 'token' => Minz_Request::paramString('token') ?: null,
+ 'token' => Minz_Request::paramString('token'),
]
);