فهرست منبع

Fix empty token bug (#6185)

fix https://github.com/FreshRSS/FreshRSS/issues/6184
Alexandre Alapetite 2 سال پیش
والد
کامیت
354a5e8388
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 1
      app/Controllers/userController.php

+ 1 - 1
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'),
 				]
 			);