From 719b84ed2aab54a771c3a6f4da70e7d37b1beeaa Mon Sep 17 00:00:00 2001 From: FusionPBX Date: Sat, 17 Jun 2023 15:27:56 -0600 Subject: [PATCH] Skip redirect and prompt for login --- index.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/index.php b/index.php index cff652518b..6a4c0a06a8 100644 --- a/index.php +++ b/index.php @@ -62,7 +62,8 @@ require_once "themes/".$_SESSION['domain']['template']['name']."/index.php"; } else { - header("Location: ".PROJECT_PATH."/core/dashboard/"); + //login prompt + require_once "resources/check_auth.php"; } }