From 5326e8969f460152d0ce9f6c6951ffedd8cdff2e Mon Sep 17 00:00:00 2001 From: FusionPBX Date: Sat, 28 Feb 2026 10:20:03 -0700 Subject: [PATCH] Add session authorized and return to remember token validate --- core/authentication/resources/classes/authentication.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/core/authentication/resources/classes/authentication.php b/core/authentication/resources/classes/authentication.php index 0fc9943190..70b8b23849 100644 --- a/core/authentication/resources/classes/authentication.php +++ b/core/authentication/resources/classes/authentication.php @@ -207,6 +207,11 @@ class authentication { 'samesite' => 'Strict' ]); + //set the session authorized to true + $_SESSION['authorized'] = true; + + //return the result + return $result; } }