From 4f0e65c1a57ade25f0e294c74717bb0b62f2162a Mon Sep 17 00:00:00 2001 From: ralf Date: Fri, 3 Feb 2023 09:56:51 +0100 Subject: [PATCH] fix not working login with domain selectbox --- api/src/Auth.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/src/Auth.php b/api/src/Auth.php index 38578305da..478bd5d26d 100644 --- a/api/src/Auth.php +++ b/api/src/Auth.php @@ -141,7 +141,7 @@ class Auth Session::egw_setcookie(Session::EGW_SESSION_NAME, session_id()); } - $backend = self::backend($type ?? null); + $backend = self::backend($type ?? null, false); return $backend instanceof Auth\BackendSSO ? $backend->login() : null; }