From 58e8ae0759ccfa97c478ccae4e0778bdce70966f Mon Sep 17 00:00:00 2001
From: Jake Vanderwerf <get@jakevanderwerf.ca>
Date: Thu, 22 Jan 2026 22:40:02 +0000
Subject: [PATCH] =DirectoryManager.php updates, some javascript tweaks for CRUD.js, and minor style changes
---
inc/meta/MetaSanitizer.php | 2 --
1 files changed, 0 insertions(+), 2 deletions(-)
diff --git a/inc/meta/MetaSanitizer.php b/inc/meta/MetaSanitizer.php
index f4f573f..6f722f7 100644
--- a/inc/meta/MetaSanitizer.php
+++ b/inc/meta/MetaSanitizer.php
@@ -22,12 +22,10 @@
public function sanitize(mixed $value, array $field_config):mixed
{
$callback = $this->getCallback($field_config);
- error_log('Callback: '.print_r($callback, true));
if (is_array($callback)) {
return call_user_func([$this, $callback[1]], $value, $field_config);
}
if (method_exists($this, $callback)) {
- error_log('Method exists');
return $this->$callback($value, $field_config);
} else {
return call_user_func($callback, $value);
--
Gitblit v1.10.0