Started adding IP and User agent to audit logs, log when a user logs out, Merged logout into post.php

This commit is contained in:
johnnyq
2021-12-09 16:12:57 -05:00
parent a5a8fbc319
commit f02e94d585
8 changed files with 38 additions and 18 deletions

View File

@@ -282,4 +282,10 @@ function formatPhoneNumber($phoneNumber) {
return $phoneNumber;
}
//SESSION FINGERPRINT
$session_ip = get_ip();
$session_os = get_os();
$session_browser = get_web_browser();
$session_device = get_device();
?>