oops fix replaced the actualy function with nullable

This commit is contained in:
johnnyq
2023-05-11 18:34:06 -04:00
parent 37fb696e63
commit 51ee479130

View File

@@ -46,7 +46,7 @@ function key32gen()
}
function nullable_htmlentities($unsanitizedInput) {
return nullable_htmlentities($unsanitizedInput ?? '');
return htmlentities($unsanitizedInput ?? '');
}
function initials($str) {