From 316f4afb5f0fc011735d48815d193300acad03ce Mon Sep 17 00:00:00 2001 From: absurdo Date: Thu, 11 May 2023 19:21:57 +0200 Subject: [PATCH] Fixes bug in e function for escaping --- src/View.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/View.php b/src/View.php index e7a47a3..e3c43e4 100644 --- a/src/View.php +++ b/src/View.php @@ -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;