From 15b03ffc6c7f5d22d0e323e5abf62ad60687fb0f Mon Sep 17 00:00:00 2001
From: Jake Vanderwerf <get@jakevanderwerf.ca>
Date: Mon, 09 Feb 2026 03:30:56 +0000
Subject: [PATCH] =Refferal.js fix endpoint to auth/magic
---
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