mirror of https://github.com/itflow-org/itflow
oops fix replaced the actualy function with nullable
This commit is contained in:
parent
37fb696e63
commit
51ee479130
|
|
@ -46,7 +46,7 @@ function key32gen()
|
|||
}
|
||||
|
||||
function nullable_htmlentities($unsanitizedInput) {
|
||||
return nullable_htmlentities($unsanitizedInput ?? '');
|
||||
return htmlentities($unsanitizedInput ?? '');
|
||||
}
|
||||
|
||||
function initials($str) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue