From d0f77db87fec20340018936dae16742be8ea8867 Mon Sep 17 00:00:00 2001 From: jouls Date: Tue, 12 Mar 2024 09:02:44 +0800 Subject: [PATCH] minor changes on notif msg --- functions-test.php | 2 +- users/update-kyc.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/functions-test.php b/functions-test.php index 2301f71..119e62c 100644 --- a/functions-test.php +++ b/functions-test.php @@ -336,7 +336,7 @@ function accept_kyc($IDkyc, $IDuser, $reason, $bToken, $Admin_UserId) "from_id":"' . $Admin_UserId . '", "to_id":"' . $IDuser . '", "title":"KYC Application Accepted.", - "message":"Greetings! ' . $reason . '.", + "message":"Congratulations! ' . $reason . '.", "status":"new" }'; diff --git a/users/update-kyc.php b/users/update-kyc.php index f759cc5..13e391f 100644 --- a/users/update-kyc.php +++ b/users/update-kyc.php @@ -20,7 +20,7 @@ if (isset($_GET['kycID'], $_GET['userID'], $_GET['isAccepted'])) { $BearerToken = $_SESSION['token']; if ($isAccepted) { - $reason = 'Congratulations, Your KYC Application got approved'; + $reason = 'Your KYC Application got approved'; // If isAccepted is true, call accept_kyc function if (accept_kyc($kycID, $userID, $reason, $BearerToken, $user_id)) { // If accept_kyc is successful, redirect to users-kyc.php