From ca818912934d7178f0873a72c795f1d2afbaca07 Mon Sep 17 00:00:00 2001 From: Ramya krishna Date: Fri, 21 Jun 2024 18:34:00 +0530 Subject: [PATCH] increasing timeframe to 10 mins for the sso --- includes/SSO_Helpers.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/SSO_Helpers.php b/includes/SSO_Helpers.php index 34a5418..e07b57b 100644 --- a/includes/SSO_Helpers.php +++ b/includes/SSO_Helpers.php @@ -68,7 +68,7 @@ public static function validateToken( $token ) { // Validate timeframe $time = array_shift( $parts ); - if ( ! $time || ( $time + 60 ) < time() ) { + if ( ! $time || ( $time + 600 ) < time() ) { return false; }