Convert custom function names to camelCase

This commit is contained in:
Marcus Hill
2023-01-26 22:03:31 +00:00
parent 10362f86ef
commit 531bd25f27
16 changed files with 20 additions and 23 deletions

View File

@@ -156,7 +156,7 @@ $sql_recent_logs = mysqli_query($mysqli, "SELECT * FROM logs
$log_id = $row['log_id'];
$log_ip = htmlentities($row['log_ip']);
$log_user_agent = htmlentities($row['log_user_agent']);
$log_user_os = get_os($log_user_agent);
$log_user_os = getOS($log_user_agent);
$log_user_browser = getWebBrowser($log_user_agent);
$log_created_at = $row['log_created_at'];