Fixes bug in e function for escaping

This commit is contained in:
absurdo 2023-05-11 19:21:57 +02:00
parent 58f8594606
commit 316f4afb5f

View file

@ -776,7 +776,7 @@ class View {
static public function e($text)
{
$text=htmlspecialchars($text, ENT_QUOTES, 'UTF-8'));
$text=htmlspecialchars($text, ENT_QUOTES, 'UTF-8');
return $text;