From 6705326df505db11fbf5f5ad504e3444e4cc8b35 Mon Sep 17 00:00:00 2001 From: Venkatesh Date: Fri, 22 May 2026 18:25:45 +0530 Subject: [PATCH 1/3] CHANGE_RES_MSG --- app/Controllers/SamlController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Controllers/SamlController.php b/app/Controllers/SamlController.php index 3dc663d..0b2ff67 100644 --- a/app/Controllers/SamlController.php +++ b/app/Controllers/SamlController.php @@ -91,7 +91,7 @@ class SamlController extends BaseController 'status' => 'failed', 'code' => 404, 'data' => '', - 'message' => 'SAML not configured for this domain', + 'message' => 'This email is not configured with Microsoft. Please try other login options.', ]); } From 519aacf5742ed2035e281bd53f58cc29f1b91fb8 Mon Sep 17 00:00:00 2001 From: Venkatesh Date: Fri, 22 May 2026 18:38:57 +0530 Subject: [PATCH 2/3] CHANGE_RES_MSG --- app/Controllers/SamlController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Controllers/SamlController.php b/app/Controllers/SamlController.php index 0b2ff67..62c3314 100644 --- a/app/Controllers/SamlController.php +++ b/app/Controllers/SamlController.php @@ -147,7 +147,7 @@ class SamlController extends BaseController 'code' => 404, 'data' => '', 'post_enrollment' => ['status' => 'failed', 'code' => 404, 'data' => ''], - 'message' => 'SAML not configured for this domain', + 'message' => 'This email is not configured with Microsoft. Please try other login options.', ]); } From 1f4e6f973d555b90fd73e8a73cf69785e632921e Mon Sep 17 00:00:00 2001 From: Venkatesh Date: Wed, 27 May 2026 11:10:51 +0530 Subject: [PATCH 3/3] CHANGE_DATE_FORMAT --- app/Controllers/EmployeeController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Controllers/EmployeeController.php b/app/Controllers/EmployeeController.php index b3718c0..9b729ea 100755 --- a/app/Controllers/EmployeeController.php +++ b/app/Controllers/EmployeeController.php @@ -2906,7 +2906,7 @@ class EmployeeController extends AdminController } - $emp_history['created_at'] = date("d-m-Y H:i:s", strtotime($emp_history['created_at'])); + $emp_history['created_at'] = date("d/m/Y H:i:s", strtotime($emp_history['created_at'])); } unset($emp_history);