From 060f6461cbb18224027157f3471bb69c08cf7169 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tobi=20Sch=C3=A4fer?= Date: Sat, 21 Mar 2020 14:56:45 +0100 Subject: [PATCH] fix: undefined variable error --- modules/core/Global.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/core/Global.js b/modules/core/Global.js index b3c2abd8..ed18217a 100644 --- a/modules/core/Global.js +++ b/modules/core/Global.js @@ -213,7 +213,7 @@ var encodeForm = function(text) { if (text === null || !text.length) return text; - return encode(str, false); + return encode(text, false); }; /**