Fix audit log for flat file database #257

Merged
tslocum merged 1 commits from averageByte/tinyib:fix/flatfile-audit-log into master 2022-06-24 05:29:09 +00:00
1 changed files with 4 additions and 4 deletions

View File

@ -203,10 +203,10 @@ function convertLogsToSQLStyle($logs, $single = false) {
function insertLog($l) {
$log = array();
$log['id'] = '0';
$log['timestamp'] = $l[LOG_TIMESTAMP];
$log['account'] = $l[LOG_ACCOUNT];
$log['message'] = $l[LOG_MESSAGE];
$log[LOG_ID] = '0';
$log[LOG_TIMESTAMP] = $l['timestamp'];
$log[LOG_ACCOUNT] = $l['account'];
$log[LOG_MESSAGE] = $l['message'];
$GLOBALS['db']->insertWithAutoId(LOGS_FILE, LOG_ID, $log);
}