mirror of https://github.com/itflow-org/itflow
Fix Username decryption on Contact Details
This commit is contained in:
parent
b742a71c57
commit
e9270016f3
|
|
@ -303,7 +303,7 @@ if (isset($_GET['contact_id'])) {
|
|||
} else {
|
||||
$login_uri_display = "$login_uri<button class='btn btn-sm clipboardjs' data-clipboard-text='$login_uri'><i class='far fa-copy text-secondary'></i></button><a href='https://$login_uri' target='_blank'><i class='fa fa-external-link-alt text-secondary'></i></a>";
|
||||
}
|
||||
$login_username = htmlentities($row['login_username']);
|
||||
$login_username = htmlentities(decryptLoginEntry($row['login_username']));
|
||||
if (empty($login_username)) {
|
||||
$login_username_display = "-";
|
||||
} else {
|
||||
|
|
|
|||
Loading…
Reference in New Issue