From 51ee47913052eeb6440153d4a36c51599d572b2f Mon Sep 17 00:00:00 2001 From: johnnyq Date: Thu, 11 May 2023 18:34:06 -0400 Subject: [PATCH] oops fix replaced the actualy function with nullable --- functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions.php b/functions.php index 9e7fae0d..cc18fa72 100644 --- a/functions.php +++ b/functions.php @@ -46,7 +46,7 @@ function key32gen() } function nullable_htmlentities($unsanitizedInput) { - return nullable_htmlentities($unsanitizedInput ?? ''); + return htmlentities($unsanitizedInput ?? ''); } function initials($str) {