From b0194e10a87e16797a568d8a30d53ebecd27d8a4 Mon Sep 17 00:00:00 2001
From: Jake Vanderwerf <get@jakevanderwerf.ca>
Date: Sat, 18 Oct 2025 15:04:51 +0000
Subject: [PATCH] =DataStore.js and UploaderManager.js overhaul
---
inc/registry/CheckCustomTables.php | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/inc/registry/CheckCustomTables.php b/inc/registry/CheckCustomTables.php
index 1dc7235..57b4795 100644
--- a/inc/registry/CheckCustomTables.php
+++ b/inc/registry/CheckCustomTables.php
@@ -1164,7 +1164,7 @@
$tables = [];
// Main referrals table
- $tables[BASE . 'referrals'] = "(
+ $tables['referrals'] = "(
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`referrer_id` bigint(20) unsigned NOT NULL,
`referee_id` bigint(20) unsigned NOT NULL,
@@ -1189,7 +1189,7 @@
)";
// Rewards table
- $tables[BASE . 'referral_rewards'] = "(
+ $tables['referral_rewards'] = "(
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`referral_id` bigint(20) unsigned NOT NULL,
`user_id` bigint(20) unsigned NOT NULL,
--
Gitblit v1.10.0