From 265e1841f0b1a8f0838a53ec398e70a97d3205ed Mon Sep 17 00:00:00 2001 From: Keith Solomon Date: Mon, 3 Aug 2026 13:45:37 -0500 Subject: [PATCH] Update index.php to call backfillUserLogs/syncUserLogs --- index.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.php b/index.php index bb66911..b5cbb60 100644 --- a/index.php +++ b/index.php @@ -15,12 +15,12 @@ require_once __DIR__ . '/functions.php'; if (dbNew()) { foreach (USER_KEYS as $key => $value) { - firstRun($key); + backfillUserLogs($key); } header('Location: /'); } else { foreach (USER_KEYS as $key => $value) { - getLog($key); + syncUserLogs($key); } } ?>