aboutsummaryrefslogtreecommitdiff
path: root/app/Controllers/authController.php
diff options
context:
space:
mode:
authorGravatar Alexis Degrugillier <aledeg@users.noreply.github.com> 2022-09-18 12:26:18 -0400
committerGravatar GitHub <noreply@github.com> 2022-09-18 18:26:18 +0200
commit7de5b93da49929072c2f984c2d78bb6865e1023d (patch)
tree39162d83f104d2907bf5d906b2c686cf7db4568c /app/Controllers/authController.php
parent37cf23390719ee0c04ce2b1b33d2cc945de69c2f (diff)
Fix login page when user does not exist (#4621)
Diffstat (limited to 'app/Controllers/authController.php')
-rw-r--r--app/Controllers/authController.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Controllers/authController.php b/app/Controllers/authController.php
index 0ad85ea38..932a1ed6d 100644
--- a/app/Controllers/authController.php
+++ b/app/Controllers/authController.php
@@ -72,7 +72,7 @@ class FreshRSS_auth_Controller extends FreshRSS_ActionController {
}
$auth_type = FreshRSS_Context::$system_conf->auth_type;
- FreshRSS_Context::initUser('_');
+ FreshRSS_Context::initUser('_', false);
switch ($auth_type) {
case 'form':
Minz_Request::forward(array('c' => 'auth', 'a' => 'formLogin'));