From e729f920139f0c65902be2d6b2c32466b08375e8 Mon Sep 17 00:00:00 2001
From: Jake Vanderwerf <get@jakevanderwerf.ca>
Date: Mon, 20 Oct 2025 17:54:52 +0000
Subject: [PATCH] =Form updates
---
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