From d7dbe7fee362d587dfc334135d9581b6216a4295 Mon Sep 17 00:00:00 2001
From: Jake Vanderwerf <get@jakevanderwerf.ca>
Date: Sun, 23 Nov 2025 04:13:56 +0000
Subject: [PATCH] =Timeline block, and feed block updated. DataStore.js refactored to not block rendering

---
 inc/registry/CheckCustomTables.php |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/inc/registry/CheckCustomTables.php b/inc/registry/CheckCustomTables.php
index ed5166a..8980dd6 100644
--- a/inc/registry/CheckCustomTables.php
+++ b/inc/registry/CheckCustomTables.php
@@ -128,9 +128,9 @@
 			}
 
 			try {
-				if (array_key_exists('dashboard', $this->JVB_SITE) && $this->JVB_SITE['dashboard']) {
+//				if (array_key_exists('dashboard', $this->JVB_SITE) && $this->JVB_SITE['dashboard']) {
 					$tables = array_merge($tables, $this->queueTables(), $this->errorLogTables());
-				}
+//				}
 			} catch (Exception $e) {
 				error_log("JVB: Error in dashboard section: " . $e->getMessage());
 			}
@@ -144,7 +144,7 @@
 			}
 			// RE-ENABLE favourites tables
 			try {
-				if ($this->JVB_SITE['favourites']) {
+				if (array_key_exists('favourites', $this->JVB_SITE)) {
 					error_log('JVB: Creating favourites tables...');
 					$favouriteTables = $this->favouriteTables();
 					error_log('JVB: Favourites tables created: ' . count($favouriteTables));

--
Gitblit v1.10.0