From 8c7b0a373915aae9902e0e6cf932a0d2c6ca2f04 Mon Sep 17 00:00:00 2001 From: boxgaming <75969133+boxgaming@users.noreply.github.com> Date: Wed, 17 May 2023 00:46:51 -0500 Subject: [PATCH] fixed html escape bug caused by typo --- lib/web/console.bas | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/web/console.bas b/lib/web/console.bas index 7ba9cde..9dc3cee 100644 --- a/lib/web/console.bas +++ b/lib/web/console.bas @@ -70,7 +70,7 @@ Function EscapeHtml (text As String) text = GXSTR_Replace(text, "&", "&") text = GXSTR_Replace(text, "<", "<") text = GXSTR_Replace(text, ">", ">") - text = GXSTR_Replace(text, Chr$(34), ""e;") + text = GXSTR_Replace(text, Chr$(34), """) text = GXSTR_Replace(text, "'", "'") EscapeHtml = text End Function \ No newline at end of file