From e9270016f3ab3a6c002dec46b097e06fca5e9254 Mon Sep 17 00:00:00 2001 From: johnnyq Date: Thu, 26 Jan 2023 17:09:31 -0500 Subject: [PATCH] Fix Username decryption on Contact Details --- client_contact_details.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client_contact_details.php b/client_contact_details.php index 973fba7a..17ad3dbf 100644 --- a/client_contact_details.php +++ b/client_contact_details.php @@ -303,7 +303,7 @@ if (isset($_GET['contact_id'])) { } else { $login_uri_display = "$login_uri"; } - $login_username = htmlentities($row['login_username']); + $login_username = htmlentities(decryptLoginEntry($row['login_username'])); if (empty($login_username)) { $login_username_display = "-"; } else {