From 130c141b7fdf734d51e3169d78874eac7c0d2b32 Mon Sep 17 00:00:00 2001 From: ericgaspar Date: Fri, 26 Mar 2021 09:54:17 +0100 Subject: [PATCH] Update sso.php --- sources/sso/sso.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sources/sso/sso.php b/sources/sso/sso.php index fcbc92e..28383bb 100644 --- a/sources/sso/sso.php +++ b/sources/sso/sso.php @@ -11,8 +11,8 @@ if (isset($_SERVER['HTTP_EMAIL']) && isset($_SERVER['PHP_AUTH_PW'])) { $ssoHash = \RainLoop\Api::GetUserSsoHash($email, $password); // redirect to webmail sso url - \header('Location: https://__DOMAIN____PATH__app/index.php?sso&hash='.$ssoHash); + \header('Location: https://__DOMAIN____PATH__/app/index.php?sso&hash='.$ssoHash); } else { - \header('Location: https://__DOMAIN____PATH__app/index.php'); + \header('Location: https://__DOMAIN____PATH__/app/index.php'); }