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); } } ?>