From 27fb820ae9081fb56957cf75e79eccd8a99edd52 Mon Sep 17 00:00:00 2001
From: Jake Vanderwerf <get@jakevanderwerf.ca>
Date: Sat, 14 Feb 2026 19:14:48 +0000
Subject: [PATCH] =minor css changes, queue merge logic restructured, and double checking changes actually changed in cRUD.js before sending to server

---
 inc/helpers/all.php |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/inc/helpers/all.php b/inc/helpers/all.php
index 59ef251..3931fc3 100644
--- a/inc/helpers/all.php
+++ b/inc/helpers/all.php
@@ -32,12 +32,14 @@
  */
 function jvb_do_once():void
 {
+
 //    delete_option(BASE.'do_these_once');
     $options = get_option(BASE.'do_these_once', []);
 
     foreach ($options as $option => $callback) {
 //        delete_option($option);
         if (!get_option($option, false)) {
+			error_log('Calling do once: '.$option);
             $callback();
             update_option($option, true);
         }

--
Gitblit v1.10.0